Skip to content

Commit

Permalink
fix(dynamic-plugin): Requires restart
Browse files Browse the repository at this point in the history
The plugin requires a restart as PhpTestFrameworkType does not support dynamic plugins.
  • Loading branch information
olivernybroe committed Jul 16, 2020
1 parent b976cd8 commit b9d45aa
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
7 changes: 4 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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

2 changes: 1 addition & 1 deletion src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<idea-plugin>
<idea-plugin require-restart="true">
<id>com.pestphp.pest-intellij</id>
<name>Pest</name>
<vendor email="[email protected]" url="https://pestphp.com/">Pest</vendor>
Expand Down

0 comments on commit b9d45aa

Please sign in to comment.