Skip to content

Commit 969955b

Browse files
committed
fix(configuration): comment out pluginUntilBuild
Plugin verifier was fixed and new version was released.
1 parent 921a5f6 commit 969955b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
## [Unreleased]
44

5+
### Fixed
6+
- Remove `pluginUntilBuild` to enable plugin for newer versions.
7+
58
## [1.14.0] - 2024-05-21
69

710
### Added

build.gradle.kts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ intellij {
2727
version.set(properties("platformVersion"))
2828
type.set(properties("platformType"))
2929

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

3332
plugins.set(
3433
properties("platformPlugins").split(',')
@@ -62,8 +61,7 @@ tasks {
6261
patchPluginXml {
6362
version.set(properties("pluginVersion"))
6463
sinceBuild.set(properties("pluginSinceBuild"))
65-
// TODO @Blarc: Comment out this line when new version of plugin verifier is released
66-
untilBuild.set(properties("pluginUntilBuild"))
64+
// untilBuild.set(properties("pluginUntilBuild"))
6765

6866
// Get the latest available change notes from the changelog file
6967
changeNotes.set(provider {

gradle.properties

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ pluginVersion = 1.14.0
77

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

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

0 commit comments

Comments
 (0)