diff --git a/CHANGELOG.md b/CHANGELOG.md index 4286d0a9..91186cb0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,10 +21,10 @@ #### Compatibility tested up to - JDK 21 - Gradle 8.6 -- Gradle 8.7-rc-2 +- Gradle 8.7-rc-3 - Android Gradle Plugin 8.3.0 -- Android Gradle Plugin 8.4.0-alpha12 -- Kotlin Gradle Plugin 1.9.22 +- Android Gradle Plugin 8.4.0-alpha13 +- Kotlin Gradle Plugin 1.9.23 - Kotlin Gradle Plugin 2.0.0-Beta4 #### Configuration cache status diff --git a/plugin/src/integrationTest/kotlin/com/vanniktech/maven/publish/TestOptions.kt b/plugin/src/integrationTest/kotlin/com/vanniktech/maven/publish/TestOptions.kt index ce04ffef..0e404299 100644 --- a/plugin/src/integrationTest/kotlin/com/vanniktech/maven/publish/TestOptions.kt +++ b/plugin/src/integrationTest/kotlin/com/vanniktech/maven/publish/TestOptions.kt @@ -41,7 +41,7 @@ enum class AgpVersion( // canary channel AGP_8_4( - value = "8.4.0-alpha12", + value = "8.4.0-alpha13", minGradleVersion = GradleVersion.GRADLE_8_6, ), } @@ -76,13 +76,12 @@ enum class GradleVersion( // rc GRADLE_8_7( - value = "8.7-rc-2", + value = "8.7-rc-3", ), ; companion object { // aliases for the skipped version to be able to reference the correct one in AgpVersion - val GRADLE_8_2 = GRADLE_8_6 val GRADLE_8_4 = GRADLE_8_6 } }