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 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.
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ fun properties(key: String) = project.findProperty(key).toString()
66plugins {
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(
Original file line number Diff line number Diff line change 44pluginGroup = com.sourcegraph.jetbrains
55pluginName = 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.
1111pluginSinceBuild = 162.0
12- pluginUntilBuild = 213.*
1312
1413# IntelliJ Platform Properties -> https://github.com/JetBrains/gradle-intellij-plugin#intellij-platform-properties
1514platformType = 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 =
2322javaVersion = 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.
You can’t perform that action at this time.
0 commit comments