From b9d45aa695997ffae294df0144120dda0cfbc35b Mon Sep 17 00:00:00 2001 From: Oliver Nybroe Date: Thu, 16 Jul 2020 08:59:50 +0200 Subject: [PATCH] fix(dynamic-plugin): Requires restart The plugin requires a restart as PhpTestFrameworkType does not support dynamic plugins. --- CHANGELOG.md | 3 +++ gradle.properties | 7 ++++--- src/main/resources/META-INF/plugin.xml | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 062f0b80..506b2ff9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,9 @@ - `$this->field` type support for fields declared in `beforeEach` and `beforeAll` functions ([#22](https://github.com/pestphp/pest-intellij/pull/22)) - Run tests scoped based on the cursor ([#24](https://github.com/pestphp/pest-intellij/pull/24), [#26](https://github.com/pestphp/pest-intellij/pull/26)) +### Fixed +- Plugin require restart as PhpTestFrameworkType does not support dynamic plugins + ## [v0.1.1] ### Added - Initial scaffold created from [IntelliJ Platform Plugin Template](https://github.com/JetBrains/intellij-platform-plugin-template) diff --git a/gradle.properties b/gradle.properties index eb2a2425..c9875a59 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,11 +3,12 @@ pluginGroup = com.pestphp pluginName = Pest -pluginVersion = 0.2.1-alpha.1 +pluginVersion = 0.2.1-alpha.2 pluginSinceBuild = 201 pluginUntilBuild = null platformType = IU -platformVersion = 2020.1.2 +platformVersion = LATEST-EAP-SNAPSHOT platformDownloadSources = true -platformPlugins = com.jetbrains.php:201.7846.90 +platformPlugins = com.jetbrains.php:202.6250.23 + diff --git a/src/main/resources/META-INF/plugin.xml b/src/main/resources/META-INF/plugin.xml index 116bd0b5..32543040 100644 --- a/src/main/resources/META-INF/plugin.xml +++ b/src/main/resources/META-INF/plugin.xml @@ -1,4 +1,4 @@ - + com.pestphp.pest-intellij Pest Pest