This repository was archived by the owner on Nov 14, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## [ Unreleased]
4
4
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
+
5
9
## [ 1.2.3]
6
10
7
11
- Upgrade JetBrains IntelliJ shell to 1.3.1 and modernize the build and release pipeline.
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ fun properties(key: String) = project.findProperty(key).toString()
6
6
plugins {
7
7
id(" java" )
8
8
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 "
10
10
id(" org.jetbrains.changelog" ) version " 1.3.1"
11
11
}
12
12
@@ -50,7 +50,6 @@ tasks {
50
50
patchPluginXml {
51
51
version.set(properties(" pluginVersion" ))
52
52
sinceBuild.set(properties(" pluginSinceBuild" ))
53
- untilBuild.set(properties(" pluginUntilBuild" ))
54
53
55
54
// Extract the <!-- Plugin description --> section from README.md and provide for the plugin's manifest
56
55
pluginDescription.set(
Original file line number Diff line number Diff line change 4
4
pluginGroup = com.sourcegraph.jetbrains
5
5
pluginName = Sourcegraph
6
6
# SemVer format -> https://semver.org
7
- pluginVersion = 1.2.3
7
+ pluginVersion = 1.2.4
8
8
9
9
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
10
10
# for insight into build numbers and IntelliJ Platform versions.
11
11
pluginSinceBuild = 162.0
12
- pluginUntilBuild = 213.*
13
12
14
13
# IntelliJ Platform Properties -> https://github.com/JetBrains/gradle-intellij-plugin#intellij-platform-properties
15
14
platformType = IC
16
- platformVersion = 2021.3
15
+ platformVersion = 2022.1
17
16
18
17
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
19
18
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
@@ -23,7 +22,7 @@ platformPlugins =
23
22
javaVersion = 11
24
23
25
24
# Gradle Releases -> https://github.com/gradle/gradle/releases
26
- gradleVersion = 7.3.3
25
+ gradleVersion = 7.4.2
27
26
28
27
# Opt-out flag for bundling Kotlin standard library.
29
28
# See https://plugins.jetbrains.com/docs/intellij/kotlin.html#kotlin-standard-library for details.
You can’t perform that action at this time.
0 commit comments