Skip to content

Commit

Permalink
fix(configuration): comment out pluginUntilBuild
Browse files Browse the repository at this point in the history
Plugin verifier was fixed and new version was released.
  • Loading branch information
Blarc committed Jun 1, 2024
1 parent 921a5f6 commit 969955b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## [Unreleased]

### Fixed
- Remove `pluginUntilBuild` to enable plugin for newer versions.

## [1.14.0] - 2024-05-21

### Added
Expand Down
6 changes: 2 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ intellij {
version.set(properties("platformVersion"))
type.set(properties("platformType"))

// TODO @Blarc: Uncomment out this line when new version of plugin verifier is released
// updateSinceUntilBuild.set(false)
updateSinceUntilBuild.set(false)

plugins.set(
properties("platformPlugins").split(',')
Expand Down Expand Up @@ -62,8 +61,7 @@ tasks {
patchPluginXml {
version.set(properties("pluginVersion"))
sinceBuild.set(properties("pluginSinceBuild"))
// TODO @Blarc: Comment out this line when new version of plugin verifier is released
untilBuild.set(properties("pluginUntilBuild"))
// untilBuild.set(properties("pluginUntilBuild"))

// Get the latest available change notes from the changelog file
changeNotes.set(provider {
Expand Down
3 changes: 1 addition & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ pluginVersion = 1.14.0

# https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 233
# TODO @Blarc: Comment out this line when new version of plugin verifier is released
pluginUntilBuild = 241.*
# pluginUntilBuild = 241.*

# https://github.com/JetBrains/gradle-intellij-plugin#intellij-platform-properties
platformType = IC
Expand Down

0 comments on commit 969955b

Please sign in to comment.