Skip to content

Commit edbb393

Browse files
committed
Set minimum supported Gradle version from 7.3 to 7.6
1 parent f502d8c commit edbb393

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

.github/workflows/reusable-integrationTests.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
gradleVersion:
22-
- "7.3"
23-
- "7.6.1"
22+
- "7.6"
2423
- "8.1"
2524
os:
2625
- windows-latest

.github/workflows/reusable-unitTests.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ jobs:
3030
fail-fast: false
3131
matrix:
3232
gradleVersion:
33-
- "7.3"
34-
- "7.6.1"
33+
- "7.6"
3534
- "8.1"
3635
os:
3736
- windows-latest

.teamcity/settings.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ project {
4444
}
4545

4646
val operatingSystems = listOf("Linux", "Windows", "macOS")
47-
val gradleVersions = listOf("7.3", "7.6.1", "8.1")
47+
val gradleVersions = listOf("7.6", "8.1")
4848

4949
val buildChain = sequential {
5050
operatingSystems.forEach { os ->

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
### Fixed
99
- Resolving Android Studio JNA libraries on macOS [#1353](../../issues/1353)
1010

11+
### Changed
12+
- Set minimum supported Gradle version from `7.3` to `7.6`
13+
1114
## [1.13.3] - 2023-03-28
1215

1316
### Added

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

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

9393
const val ANNOTATIONS_DEPENDENCY_VERSION = "24.0.0"
9494
const val DEFAULT_IDEA_VERSION = "LATEST-EAP-SNAPSHOT"
95-
const val MINIMAL_SUPPORTED_GRADLE_VERSION = "7.3"
95+
const val MINIMAL_SUPPORTED_GRADLE_VERSION = "7.6"
9696

9797
const val RELEASE_SUFFIX_EAP = "-EAP-SNAPSHOT"
9898
const val RELEASE_SUFFIX_EAP_CANDIDATE = "-EAP-CANDIDATE-SNAPSHOT"

0 commit comments

Comments
 (0)