Skip to content

Commit 28a9664

Browse files
committed
1.10.2: Revert back the minimum supported Gradle version to 6.8
1 parent de61859 commit 28a9664

File tree

6 files changed

+15
-6
lines changed

6 files changed

+15
-6
lines changed

.github/workflows/reusable-integrationTests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ jobs:
5555
fail-fast: false
5656
matrix:
5757
gradleVersion:
58+
- 6.8
59+
- 6.9.3
5860
- 7.1
5961
- 7.6
6062
os:

.github/workflows/reusable-unitTests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ jobs:
3030
fail-fast: false
3131
matrix:
3232
gradleVersion:
33-
- 7.1
33+
- 6.8
34+
- 6.9.3
3435
- 7.6
3536
os:
3637
- windows-latest

.teamcity/settings.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ project {
4343

4444

4545
object UnitTests : BuildType({
46-
val gradleVersions = listOf("7.1", "7.6")
46+
val gradleVersions = listOf("6.8", "6.9.3", "7.6")
4747

4848
name = "Unit Tests"
4949

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## [next]
44

5+
### Changed
6+
- Revert back the minimum supported Gradle version to `6.8`
7+
8+
## [1.10.1] - 2022-12-08
9+
510
### Changed
611
- Set minimum supported Gradle version from `6.8` to `7.1`
712

@@ -605,7 +610,8 @@
605610
## [0.0.10]
606611
- Support for attaching IntelliJ sources in IDEA
607612

608-
[next]: https://github.com/JetBrains/gradle-intellij-plugin/compare/v1.10.0...HEAD
613+
[next]: https://github.com/JetBrains/gradle-intellij-plugin/compare/v1.10.1...HEAD
614+
[1.10.1]: https://github.com/JetBrains/gradle-intellij-plugin/compare/v1.10.0...v1.10.1
609615
[1.10.0]: https://github.com/JetBrains/gradle-intellij-plugin/compare/v1.9.0...v1.10.0
610616
[1.9.0]: https://github.com/JetBrains/gradle-intellij-plugin/compare/v1.8.1...v1.9.0
611617
[1.8.1]: https://github.com/JetBrains/gradle-intellij-plugin/compare/v1.8.0...v1.8.1

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version=1.10.1
1+
version=1.10.2
22
snapshotVersion=1.11.0
33
snapshot=false
44
group=org.jetbrains.intellij.plugins
@@ -20,7 +20,7 @@ ossrhUsername=
2020
ossrhPassword=
2121
pluginsRepository=https://cache-redirector.jetbrains.com/plugins.jetbrains.com/maven
2222

23-
gradleVersion=7.1
23+
gradleVersion=7.6
2424
kotlinVersion=1.7.22
2525

2626
testGradleVersion=

src/main/kotlin/org/jetbrains/intellij/IntelliJPluginConstants.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ object IntelliJPluginConstants {
5050

5151
const val ANNOTATIONS_DEPENDENCY_VERSION = "23.0.0"
5252
const val DEFAULT_IDEA_VERSION = "LATEST-EAP-SNAPSHOT"
53-
const val MINIMAL_SUPPORTED_GRADLE_VERSION = "7.1"
53+
const val MINIMAL_SUPPORTED_GRADLE_VERSION = "6.8"
5454

5555
const val RELEASE_SUFFIX_EAP = "-EAP-SNAPSHOT"
5656
const val RELEASE_SUFFIX_EAP_CANDIDATE = "-EAP-CANDIDATE-SNAPSHOT"

0 commit comments

Comments
 (0)