Skip to content

Commit

Permalink
1.10.2: Revert back the minimum supported Gradle version to 6.8
Browse files Browse the repository at this point in the history
  • Loading branch information
hsz committed Dec 16, 2022
1 parent de61859 commit 28a9664
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/reusable-integrationTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ jobs:
fail-fast: false
matrix:
gradleVersion:
- 6.8
- 6.9.3
- 7.1
- 7.6
os:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/reusable-unitTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ jobs:
fail-fast: false
matrix:
gradleVersion:
- 7.1
- 6.8
- 6.9.3
- 7.6
os:
- windows-latest
Expand Down
2 changes: 1 addition & 1 deletion .teamcity/settings.kts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ project {


object UnitTests : BuildType({
val gradleVersions = listOf("7.1", "7.6")
val gradleVersions = listOf("6.8", "6.9.3", "7.6")

name = "Unit Tests"

Expand Down
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## [next]

### Changed
- Revert back the minimum supported Gradle version to `6.8`

## [1.10.1] - 2022-12-08

### Changed
- Set minimum supported Gradle version from `6.8` to `7.1`

Expand Down Expand Up @@ -605,7 +610,8 @@
## [0.0.10]
- Support for attaching IntelliJ sources in IDEA

[next]: https://github.com/JetBrains/gradle-intellij-plugin/compare/v1.10.0...HEAD
[next]: https://github.com/JetBrains/gradle-intellij-plugin/compare/v1.10.1...HEAD
[1.10.1]: https://github.com/JetBrains/gradle-intellij-plugin/compare/v1.10.0...v1.10.1
[1.10.0]: https://github.com/JetBrains/gradle-intellij-plugin/compare/v1.9.0...v1.10.0
[1.9.0]: https://github.com/JetBrains/gradle-intellij-plugin/compare/v1.8.1...v1.9.0
[1.8.1]: https://github.com/JetBrains/gradle-intellij-plugin/compare/v1.8.0...v1.8.1
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=1.10.1
version=1.10.2
snapshotVersion=1.11.0
snapshot=false
group=org.jetbrains.intellij.plugins
Expand All @@ -20,7 +20,7 @@ ossrhUsername=
ossrhPassword=
pluginsRepository=https://cache-redirector.jetbrains.com/plugins.jetbrains.com/maven

gradleVersion=7.1
gradleVersion=7.6
kotlinVersion=1.7.22

testGradleVersion=
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ object IntelliJPluginConstants {

const val ANNOTATIONS_DEPENDENCY_VERSION = "23.0.0"
const val DEFAULT_IDEA_VERSION = "LATEST-EAP-SNAPSHOT"
const val MINIMAL_SUPPORTED_GRADLE_VERSION = "7.1"
const val MINIMAL_SUPPORTED_GRADLE_VERSION = "6.8"

const val RELEASE_SUFFIX_EAP = "-EAP-SNAPSHOT"
const val RELEASE_SUFFIX_EAP_CANDIDATE = "-EAP-CANDIDATE-SNAPSHOT"
Expand Down

0 comments on commit 28a9664

Please sign in to comment.