Skip to content

Commit cea6894

Browse files
Fix compatible build numbers
1 parent 38988fb commit cea6894

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ idea {
4343

4444
apply plugin: 'org.jetbrains.intellij'
4545
intellij {
46-
version ideaVersion
46+
version = ideaVersion
47+
updateSinceUntilBuild = false
4748

4849
publish {
4950
username = project.hasProperty('jetbrainsUser') \
@@ -53,7 +54,6 @@ intellij {
5354
? project.property('jetbrainsPassword') \
5455
: System.getenv('JETBRAINS_PASSWORD')
5556
pluginId = '8277'
56-
channel = 'default'
5757
}
5858
}
5959

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# https://www.jetbrains.com/intellij-repository/releases
33
# https://www.jetbrains.com/intellij-repository/snapshots
44
version=0.1.0
5-
ideaVersion=145.256.33
5+
ideaVersion=145.258.11
66
# https://intellij-support.jetbrains.com/hc/en-us/articles/206544879-Selecting-the-JDK-version-the-IDE-will-run-under
77
# Java 8 is required to run IntelliJ IDEA starting from version 16
88
javaVersion=1.8

src/main/resources/META-INF/plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html
2828
for description -->
29-
<idea-version since-build="145.258"/>
29+
<idea-version since-build="145"/>
3030

3131
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
3232
on how to target different products -->

0 commit comments

Comments
 (0)