From 521bc6519a66401fe9094fd7ac35795ab351f997 Mon Sep 17 00:00:00 2001 From: kotlinisland Date: Wed, 13 Dec 2023 14:34:37 +1000 Subject: [PATCH 01/18] Remove Gradle Kotlin DSL Lazy Property Assignment because it's default now --- .github/template-cleanup/gradle.properties | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/template-cleanup/gradle.properties b/.github/template-cleanup/gradle.properties index 1395677..d2e9f17 100644 --- a/.github/template-cleanup/gradle.properties +++ b/.github/template-cleanup/gradle.properties @@ -29,6 +29,3 @@ org.gradle.configuration-cache = true # Enable Gradle Build Cache -> https://docs.gradle.org/current/userguide/build_cache.html org.gradle.caching = true - -# Enable Gradle Kotlin DSL Lazy Property Assignment -> https://docs.gradle.org/current/userguide/kotlin_dsl.html#kotdsl:assignment -systemProp.org.gradle.unsafe.kotlin.assignment = true From 8d42508c6cb3d252cd104ba7f94c03b5aadaf1dc Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 1 Dec 2023 13:26:46 +0000 Subject: [PATCH 02/18] Changelog update - v1.11.3 --- CHANGELOG.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fde9b62..5312727 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ ## [Unreleased] +## [1.11.3] - 2023-12-01 + ### Changed - Upgrade Gradle Wrapper to `8.5` @@ -646,7 +648,8 @@ - GitHub Actions to automate testing and deployment - Kotlin support -[Unreleased]: https://github.com/JetBrains/intellij-platform-plugin-template/compare/v1.11.2...HEAD +[Unreleased]: https://github.com/JetBrains/intellij-platform-plugin-template/compare/v1.11.3...HEAD +[1.11.3]: https://github.com/JetBrains/intellij-platform-plugin-template/compare/v1.11.2...v1.11.3 [1.11.2]: https://github.com/JetBrains/intellij-platform-plugin-template/compare/v1.11.1...v1.11.2 [1.11.1]: https://github.com/JetBrains/intellij-platform-plugin-template/compare/v1.11.0...v1.11.1 [1.11.0]: https://github.com/JetBrains/intellij-platform-plugin-template/compare/v1.10.0...v1.11.0 From 0186f695085ae49c8d01b66076e905fdfd59b0c4 Mon Sep 17 00:00:00 2001 From: Jakub Chrzanowski Date: Thu, 1 Feb 2024 09:48:10 +0100 Subject: [PATCH 03/18] Remove Gradle Kotlin DSL Lazy Property Assignment from the main `gradle.properties` file --- gradle.properties | 3 --- 1 file changed, 3 deletions(-) diff --git a/gradle.properties b/gradle.properties index 6d9bbd4..c54e780 100644 --- a/gradle.properties +++ b/gradle.properties @@ -29,6 +29,3 @@ org.gradle.configuration-cache = true # Enable Gradle Build Cache -> https://docs.gradle.org/current/userguide/build_cache.html org.gradle.caching = true - -# Enable Gradle Kotlin DSL Lazy Property Assignment -> https://docs.gradle.org/current/userguide/kotlin_dsl.html#kotdsl:assignment -systemProp.org.gradle.unsafe.kotlin.assignment = true From fc3f3f4c9ff9c49b76792fa06e60389aea357606 Mon Sep 17 00:00:00 2001 From: Jakub Chrzanowski Date: Thu, 1 Feb 2024 09:51:15 +0100 Subject: [PATCH 04/18] CHANGELOG update --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5312727..41cbf7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ ## [Unreleased] +### Removed + +- Remove Gradle Kotlin DSL Lazy Property Assignment because it's default now + ## [1.11.3] - 2023-12-01 ### Changed From b3cb370194b0ecb73ddec043d4ba453418807997 Mon Sep 17 00:00:00 2001 From: Ryan Rushton Date: Thu, 1 Feb 2024 20:27:58 +1100 Subject: [PATCH 05/18] Fix create draft release (#427) * Fix bash variable access in Create Release Draft step. * Fix channels assignment in publishPlugin task. * Remove Gradle Kotlin DSL Lazy Property Assignment because it's default now * Changelog update - v1.11.3 * Remove Gradle Kotlin DSL Lazy Property Assignment from the main `gradle.properties` file * CHANGELOG update * Adjust obtaining the value for `publishPlugin.channels` property. * CHANGELOG update --------- Co-authored-by: kotlinisland Co-authored-by: GitHub Action Co-authored-by: Jakub Chrzanowski --- .github/workflows/build.yml | 2 +- CHANGELOG.md | 5 +++++ build.gradle.kts | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6e21b5a..57a4862 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -256,7 +256,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - gh release create v${{ needs.build.outputs.version }} \ + gh release create "v${{ needs.build.outputs.version }}" \ --draft \ --title "v${{ needs.build.outputs.version }}" \ --notes "$(cat << 'EOM' diff --git a/CHANGELOG.md b/CHANGELOG.md index 41cbf7e..ee2b30c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ ## [Unreleased] +### Fixed + +- Adjusted obtaining the value for `publishPlugin.channels` property in `build.gradle.kts` +- Fixed bash variable access in the Create Release Draft step. + ### Removed - Remove Gradle Kotlin DSL Lazy Property Assignment because it's default now diff --git a/build.gradle.kts b/build.gradle.kts index bf0c939..7b867e7 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -126,6 +126,6 @@ tasks { // The pluginVersion is based on the SemVer (https://semver.org) and supports pre-release labels, like 2.1.7-alpha.3 // Specify pre-release label to publish the plugin in a custom Release Channel automatically. Read more: // https://plugins.jetbrains.com/docs/intellij/deployment.html#specifying-a-release-channel - channels = properties("pluginVersion").map { listOf(it.split('-').getOrElse(1) { "default" }.split('.').first()) } + channels = properties("pluginVersion").map { listOf(it.substringAfter('-').substringBefore('.').ifEmpty { "default" }) } } } From 0471a9979944cb6548353d550e2c85c9f9369d25 Mon Sep 17 00:00:00 2001 From: Alex Chmyr Date: Fri, 2 Feb 2024 22:36:47 +0000 Subject: [PATCH 06/18] Update build.yml Reducing number of concurrent builds --- .github/workflows/build.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6e21b5a..1b7ae42 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,6 +20,10 @@ on: # Trigger the workflow on any pull request pull_request: +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true + jobs: # Prepare environment and build the plugin From 91c3282139413dba388cbc52c6557dfcc1c5d657 Mon Sep 17 00:00:00 2001 From: kotlinisland Date: Wed, 13 Dec 2023 14:34:37 +1000 Subject: [PATCH 07/18] Remove Gradle Kotlin DSL Lazy Property Assignment because it's default now --- .github/template-cleanup/gradle.properties | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/template-cleanup/gradle.properties b/.github/template-cleanup/gradle.properties index 1395677..d2e9f17 100644 --- a/.github/template-cleanup/gradle.properties +++ b/.github/template-cleanup/gradle.properties @@ -29,6 +29,3 @@ org.gradle.configuration-cache = true # Enable Gradle Build Cache -> https://docs.gradle.org/current/userguide/build_cache.html org.gradle.caching = true - -# Enable Gradle Kotlin DSL Lazy Property Assignment -> https://docs.gradle.org/current/userguide/kotlin_dsl.html#kotdsl:assignment -systemProp.org.gradle.unsafe.kotlin.assignment = true From 3d18989b531792f210f587e95873342ad96e3718 Mon Sep 17 00:00:00 2001 From: Jakub Chrzanowski Date: Thu, 1 Feb 2024 09:48:10 +0100 Subject: [PATCH 08/18] Remove Gradle Kotlin DSL Lazy Property Assignment from the main `gradle.properties` file --- gradle.properties | 3 --- 1 file changed, 3 deletions(-) diff --git a/gradle.properties b/gradle.properties index 6d9bbd4..c54e780 100644 --- a/gradle.properties +++ b/gradle.properties @@ -29,6 +29,3 @@ org.gradle.configuration-cache = true # Enable Gradle Build Cache -> https://docs.gradle.org/current/userguide/build_cache.html org.gradle.caching = true - -# Enable Gradle Kotlin DSL Lazy Property Assignment -> https://docs.gradle.org/current/userguide/kotlin_dsl.html#kotdsl:assignment -systemProp.org.gradle.unsafe.kotlin.assignment = true From 9f4051c3d8c68ea7f256b4580e6d0fd421f05133 Mon Sep 17 00:00:00 2001 From: Jakub Chrzanowski Date: Thu, 1 Feb 2024 09:51:15 +0100 Subject: [PATCH 09/18] CHANGELOG update --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5312727..41cbf7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ ## [Unreleased] +### Removed + +- Remove Gradle Kotlin DSL Lazy Property Assignment because it's default now + ## [1.11.3] - 2023-12-01 ### Changed From de86d6b34b56e0c66f07fc52ecdc5a092c5d7aca Mon Sep 17 00:00:00 2001 From: Ryan Rushton Date: Thu, 1 Feb 2024 20:27:58 +1100 Subject: [PATCH 10/18] Fix create draft release (#427) * Fix bash variable access in Create Release Draft step. * Fix channels assignment in publishPlugin task. * Remove Gradle Kotlin DSL Lazy Property Assignment because it's default now * Changelog update - v1.11.3 * Remove Gradle Kotlin DSL Lazy Property Assignment from the main `gradle.properties` file * CHANGELOG update * Adjust obtaining the value for `publishPlugin.channels` property. * CHANGELOG update --------- Co-authored-by: kotlinisland Co-authored-by: GitHub Action Co-authored-by: Jakub Chrzanowski --- .github/workflows/build.yml | 2 +- CHANGELOG.md | 5 +++++ build.gradle.kts | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1b7ae42..93eebd8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -260,7 +260,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - gh release create v${{ needs.build.outputs.version }} \ + gh release create "v${{ needs.build.outputs.version }}" \ --draft \ --title "v${{ needs.build.outputs.version }}" \ --notes "$(cat << 'EOM' diff --git a/CHANGELOG.md b/CHANGELOG.md index 41cbf7e..ee2b30c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ ## [Unreleased] +### Fixed + +- Adjusted obtaining the value for `publishPlugin.channels` property in `build.gradle.kts` +- Fixed bash variable access in the Create Release Draft step. + ### Removed - Remove Gradle Kotlin DSL Lazy Property Assignment because it's default now diff --git a/build.gradle.kts b/build.gradle.kts index bf0c939..7b867e7 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -126,6 +126,6 @@ tasks { // The pluginVersion is based on the SemVer (https://semver.org) and supports pre-release labels, like 2.1.7-alpha.3 // Specify pre-release label to publish the plugin in a custom Release Channel automatically. Read more: // https://plugins.jetbrains.com/docs/intellij/deployment.html#specifying-a-release-channel - channels = properties("pluginVersion").map { listOf(it.split('-').getOrElse(1) { "default" }.split('.').first()) } + channels = properties("pluginVersion").map { listOf(it.substringAfter('-').substringBefore('.').ifEmpty { "default" }) } } } From 367a43582ff5dae46559cf8a7e1cf82a6b17ca6a Mon Sep 17 00:00:00 2001 From: Jakub Chrzanowski Date: Tue, 20 Feb 2024 20:05:28 +0100 Subject: [PATCH 11/18] CHANGELOG update --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ee2b30c..18db6fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ ## [Unreleased] +### Added + +- GitHub Actions: Reduce the number of concurrent builds + ### Fixed - Adjusted obtaining the value for `publishPlugin.channels` property in `build.gradle.kts` From 76d15e31e8a91cd8814f4ba8ce13f4dcb55504a6 Mon Sep 17 00:00:00 2001 From: sadv1r <5000487+sadv1r@users.noreply.github.com> Date: Sat, 3 Feb 2024 01:45:15 +0300 Subject: [PATCH 12/18] GitHub Actions: Replace gradle/gradle-build-action@v2 with gradle/actions/setup-gradle@v3 --- .github/workflows/build.yml | 6 +++--- .github/workflows/release.yml | 2 +- .github/workflows/run-ui-tests.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 93eebd8..1649e6e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -53,7 +53,7 @@ jobs: # Setup Gradle - name: Setup Gradle - uses: gradle/gradle-build-action@v2 + uses: gradle/actions/setup-gradle@v3 with: gradle-home-cache-cleanup: true @@ -117,7 +117,7 @@ jobs: # Setup Gradle - name: Setup Gradle - uses: gradle/gradle-build-action@v2 + uses: gradle/actions/setup-gradle@v3 with: gradle-home-cache-cleanup: true @@ -201,7 +201,7 @@ jobs: # Setup Gradle - name: Setup Gradle - uses: gradle/gradle-build-action@v2 + uses: gradle/actions/setup-gradle@v3 with: gradle-home-cache-cleanup: true diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0d48e56..a67c249 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -33,7 +33,7 @@ jobs: # Setup Gradle - name: Setup Gradle - uses: gradle/gradle-build-action@v2 + uses: gradle/actions/setup-gradle@v3 with: gradle-home-cache-cleanup: true diff --git a/.github/workflows/run-ui-tests.yml b/.github/workflows/run-ui-tests.yml index 05e483b..23d609d 100644 --- a/.github/workflows/run-ui-tests.yml +++ b/.github/workflows/run-ui-tests.yml @@ -44,7 +44,7 @@ jobs: # Setup Gradle - name: Setup Gradle - uses: gradle/gradle-build-action@v2 + uses: gradle/actions/setup-gradle@v3 with: gradle-home-cache-cleanup: true From d3258cea7fbdf18b0eeea7dcf4189a9148345e5c Mon Sep 17 00:00:00 2001 From: Jakub Chrzanowski Date: Tue, 20 Feb 2024 20:09:59 +0100 Subject: [PATCH 13/18] CHANGELOG update --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 18db6fe..0cffef0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ - GitHub Actions: Reduce the number of concurrent builds +### Changed + +- Dependencies (GitHub Actions) - upgrade `gradle/gradle-build-action@v2` to `gradle/actions/setup-gradle@v3` + ### Fixed - Adjusted obtaining the value for `publishPlugin.channels` property in `build.gradle.kts` From a51bde09cf5f47d885302b35aa2557c607571a45 Mon Sep 17 00:00:00 2001 From: Jakub Chrzanowski Date: Tue, 20 Feb 2024 20:13:38 +0100 Subject: [PATCH 14/18] Dependencies (GitHub Actions) - upgrade `JetBrains/qodana-action` to `v2023.3.1` --- .github/workflows/build.yml | 2 +- CHANGELOG.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1649e6e..9221a58 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -170,7 +170,7 @@ jobs: # Run Qodana inspections - name: Qodana - Code Inspection - uses: JetBrains/qodana-action@v2023.2.8 + uses: JetBrains/qodana-action@v2023.3.1 with: cache-default-branch-only: true diff --git a/CHANGELOG.md b/CHANGELOG.md index 0cffef0..58db2a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ ### Changed - Dependencies (GitHub Actions) - upgrade `gradle/gradle-build-action@v2` to `gradle/actions/setup-gradle@v3` +- Dependencies (GitHub Actions) - upgrade `JetBrains/qodana-action` to `v2023.3.1` ### Fixed From b9b2639dca70d33ce5d047bfc75944744946b623 Mon Sep 17 00:00:00 2001 From: Jakub Chrzanowski Date: Tue, 20 Feb 2024 22:07:47 +0100 Subject: [PATCH 15/18] Dependencies - upgrade `org.jetbrains.intellij` to `1.17.2` --- CHANGELOG.md | 1 + gradle/libs.versions.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 58db2a9..63f832d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ ### Changed +- Dependencies - upgrade `org.jetbrains.intellij` to `1.17.2` - Dependencies (GitHub Actions) - upgrade `gradle/gradle-build-action@v2` to `gradle/actions/setup-gradle@v3` - Dependencies (GitHub Actions) - upgrade `JetBrains/qodana-action` to `v2023.3.1` diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index febb8cd..963bc3c 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -5,7 +5,7 @@ annotations = "24.1.0" # plugins kotlin = "1.9.21" changelog = "2.2.0" -gradleIntelliJPlugin = "1.16.1" +gradleIntelliJPlugin = "1.17.2" qodana = "0.1.13" kover = "0.7.5" From 9a177f918badb5ef8b97cb363a58af8a92ce5c31 Mon Sep 17 00:00:00 2001 From: Jakub Chrzanowski Date: Tue, 20 Feb 2024 22:10:11 +0100 Subject: [PATCH 16/18] Upgrade Gradle Wrapper to `8.6` --- .github/template-cleanup/gradle.properties | 2 +- CHANGELOG.md | 1 + gradle.properties | 2 +- gradle/wrapper/gradle-wrapper.properties | 2 +- gradlew.bat | 20 ++++++++++---------- 5 files changed, 14 insertions(+), 13 deletions(-) diff --git a/.github/template-cleanup/gradle.properties b/.github/template-cleanup/gradle.properties index d2e9f17..fda5079 100644 --- a/.github/template-cleanup/gradle.properties +++ b/.github/template-cleanup/gradle.properties @@ -19,7 +19,7 @@ platformVersion = 2022.3.3 platformPlugins = # Gradle Releases -> https://github.com/gradle/gradle/releases -gradleVersion = 8.5 +gradleVersion = 8.6 # Opt-out flag for bundling Kotlin standard library -> https://jb.gg/intellij-platform-kotlin-stdlib kotlin.stdlib.default.dependency = false diff --git a/CHANGELOG.md b/CHANGELOG.md index 63f832d..ad159ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ ### Changed +- Upgrade Gradle Wrapper to `8.6` - Dependencies - upgrade `org.jetbrains.intellij` to `1.17.2` - Dependencies (GitHub Actions) - upgrade `gradle/gradle-build-action@v2` to `gradle/actions/setup-gradle@v3` - Dependencies (GitHub Actions) - upgrade `JetBrains/qodana-action` to `v2023.3.1` diff --git a/gradle.properties b/gradle.properties index c54e780..631e5bf 100644 --- a/gradle.properties +++ b/gradle.properties @@ -19,7 +19,7 @@ platformVersion = 2022.3.3 platformPlugins = # Gradle Releases -> https://github.com/gradle/gradle/releases -gradleVersion = 8.5 +gradleVersion = 8.6 # Opt-out flag for bundling Kotlin standard library -> https://jb.gg/intellij-platform-kotlin-stdlib kotlin.stdlib.default.dependency = false diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 1af9e09..a80b22c 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/gradlew.bat b/gradlew.bat index 93e3f59..25da30d 100644 --- a/gradlew.bat +++ b/gradlew.bat @@ -43,11 +43,11 @@ set JAVA_EXE=java.exe %JAVA_EXE% -version >NUL 2>&1 if %ERRORLEVEL% equ 0 goto execute -echo. -echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. +echo. 1>&2 +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 goto fail @@ -57,11 +57,11 @@ set JAVA_EXE=%JAVA_HOME%/bin/java.exe if exist "%JAVA_EXE%" goto execute -echo. -echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. +echo. 1>&2 +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 goto fail From 7c0690cbec68a823a401dbbc03f139588e300655 Mon Sep 17 00:00:00 2001 From: Jakub Chrzanowski Date: Tue, 20 Feb 2024 22:11:23 +0100 Subject: [PATCH 17/18] Change since/until build to `223-241.*` (2022.3-2024.1.*) --- .github/template-cleanup/gradle.properties | 2 +- CHANGELOG.md | 1 + gradle.properties | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/template-cleanup/gradle.properties b/.github/template-cleanup/gradle.properties index fda5079..d3f3954 100644 --- a/.github/template-cleanup/gradle.properties +++ b/.github/template-cleanup/gradle.properties @@ -8,7 +8,7 @@ pluginVersion = 0.0.1 # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html pluginSinceBuild = 223 -pluginUntilBuild = 233.* +pluginUntilBuild = 241.* # IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension platformType = IC diff --git a/CHANGELOG.md b/CHANGELOG.md index ad159ac..a9a2bee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ ### Changed +- Change since/until build to `223-241.*` (2022.3-2024.1.*) - Upgrade Gradle Wrapper to `8.6` - Dependencies - upgrade `org.jetbrains.intellij` to `1.17.2` - Dependencies (GitHub Actions) - upgrade `gradle/gradle-build-action@v2` to `gradle/actions/setup-gradle@v3` diff --git a/gradle.properties b/gradle.properties index 631e5bf..29404ab 100644 --- a/gradle.properties +++ b/gradle.properties @@ -8,7 +8,7 @@ pluginVersion = 1.11.3 # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html pluginSinceBuild = 223 -pluginUntilBuild = 233.* +pluginUntilBuild = 241.* # IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension platformType = IC From 9cb309ff88beabd569b47bff5a19112703e2e02f Mon Sep 17 00:00:00 2001 From: Jakub Chrzanowski Date: Tue, 20 Feb 2024 22:14:21 +0100 Subject: [PATCH 18/18] 1.12.0 --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index 29404ab..fc81754 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,7 +4,7 @@ pluginGroup = org.jetbrains.plugins.template pluginName = IntelliJ Platform Plugin Template pluginRepositoryUrl = https://github.com/JetBrains/intellij-platform-plugin-template # SemVer format -> https://semver.org -pluginVersion = 1.11.3 +pluginVersion = 1.12.0 # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html pluginSinceBuild = 223