JetBrains / intellij-platform-plugin-template

Template repository for creating plugins for IntelliJ Platform
Apache License 2.0
3.05k stars 619 forks source link

Fix pluginVersion for unreleased version #315

Closed nowsprinting closed 1 year ago

nowsprinting commented 1 year ago

Changelog v2.0.0 requires contains pluginVersion as version in CHANGELOG.md.

I got error:

1 problem was found storing the configuration cache.
- Task `:patchPluginXml` of type `org.jetbrains.intellij.tasks.PatchPluginXmlTask`: value 'map(java.lang.String provider(?) check-type())' failed to unpack provider
(snip)
> org.jetbrains.changelog.exceptions.MissingVersionException: Version is missing: any
hsz commented 1 year ago

Thanks for pointing this out. I've fixed it in a slightly different way: https://github.com/JetBrains/intellij-platform-plugin-template/commit/4d52215dbe0d85a9a8635ab4b7c98bff4188ba7c

nowsprinting commented 1 year ago

Thanks fix!