Skip to content
This repository was archived by the owner on Nov 14, 2023. It is now read-only.

Commit 0fa4b95

Browse files
Make the plugin work with JetBrains 2022.1 products (#42)
* Upgrade wrapper and IDE versions and remove pluginUntilBuild rule * Add changelog entry * Update version
1 parent 01bb232 commit 0fa4b95

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

CHANGELOG.md

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

33
## [Unreleased]
44

5+
## [1.2.4]
6+
7+
- Fixed an issue that prevent the latest version of the plugin to work with JetBrains 2022.1 products.
8+
59
## [1.2.3]
610

711
- Upgrade JetBrains IntelliJ shell to 1.3.1 and modernize the build and release pipeline.

build.gradle.kts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ fun properties(key: String) = project.findProperty(key).toString()
66
plugins {
77
id("java")
88
id("org.jetbrains.kotlin.jvm") version "1.6.10"
9-
id("org.jetbrains.intellij") version "1.3.1"
9+
id("org.jetbrains.intellij") version "1.5.3"
1010
id("org.jetbrains.changelog") version "1.3.1"
1111
}
1212

@@ -50,7 +50,6 @@ tasks {
5050
patchPluginXml {
5151
version.set(properties("pluginVersion"))
5252
sinceBuild.set(properties("pluginSinceBuild"))
53-
untilBuild.set(properties("pluginUntilBuild"))
5453

5554
// Extract the <!-- Plugin description --> section from README.md and provide for the plugin's manifest
5655
pluginDescription.set(

gradle.properties

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,15 @@
44
pluginGroup = com.sourcegraph.jetbrains
55
pluginName = Sourcegraph
66
# SemVer format -> https://semver.org
7-
pluginVersion = 1.2.3
7+
pluginVersion = 1.2.4
88

99
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1010
# for insight into build numbers and IntelliJ Platform versions.
1111
pluginSinceBuild = 162.0
12-
pluginUntilBuild = 213.*
1312

1413
# IntelliJ Platform Properties -> https://github.com/JetBrains/gradle-intellij-plugin#intellij-platform-properties
1514
platformType = IC
16-
platformVersion = 2021.3
15+
platformVersion = 2022.1
1716

1817
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
1918
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
@@ -23,7 +22,7 @@ platformPlugins =
2322
javaVersion = 11
2423

2524
# Gradle Releases -> https://github.com/gradle/gradle/releases
26-
gradleVersion = 7.3.3
25+
gradleVersion = 7.4.2
2726

2827
# Opt-out flag for bundling Kotlin standard library.
2928
# See https://plugins.jetbrains.com/docs/intellij/kotlin.html#kotlin-standard-library for details.

0 commit comments

Comments
 (0)