Skip to content

Commit

Permalink
update tested versions (#853)
Browse files Browse the repository at this point in the history
* update tested versions

* ktlint
  • Loading branch information
gabrielittner authored Oct 5, 2024
1 parent 9604ecd commit a40d994
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
java_version: [11, 17, 21]
java_version: [11, 17, 23]
test_config_method: ["DSL", "PROPERTIES", "BASE"]

steps:
Expand Down
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
- Supports both `org.jetbrains.dokka` and `org.jetbrains.dokka-javadoc`
- If both are applied the javadoc output is published
- Removed support for the old `org.jetbrains.dokka-android` plugin
- Support custom Sonatype hosts by providing a `https` url in `SONATYPE_HOST` Gradle property
- Remove usages of deprecated Gradle API that is scheduled to be removed in Gradle 9.0
- Raised minimum supported Gradle version
- Improve naming of javadoc jars
Expand All @@ -18,10 +19,10 @@
- Kotlin Gradle Plugin 1.9.20

#### Compatibility tested up to
- JDK 21
- Gradle 8.10
- JDK 23
- Gradle 8.10.2
- Android Gradle Plugin 8.7.0
- Android Gradle Plugin 8.8.0-alpha09
- Android Gradle Plugin 8.8.0-alpha05
- Kotlin Gradle Plugin 2.0.20
- Kotlin Gradle Plugin 2.1.0-Beta1

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@ private fun ProjectSpec.writeGradleProperties(path: Path, options: TestOptions)
buildString {
appendLine("org.gradle.vfs.watch=false")
appendLine("kotlin.compiler.execution.strategy=in-process")
appendLine("kotlin.jvm.target.validation.mode=ignore")
appendLine("kotlin.mpp.androidSourceSetLayoutVersion1.nowarn=true")
appendLine("org.jetbrains.dokka.experimental.gradle.pluginMode=V2Enabled")
appendLine("org.jetbrains.dokka.experimental.gradle.pluginMode.noWarn=true")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ enum class AgpVersion(

// canary channel
AGP_8_8(
value = "8.8.0-alpha04",
minGradleVersion = GradleVersion.GRADLE_8_9,
value = "8.8.0-alpha05",
minGradleVersion = GradleVersion.GRADLE_8_10,
),
}

Expand All @@ -68,11 +68,12 @@ enum class GradleVersion(
// minimum supported
GRADLE_8_5(
value = "8.5",
firstUnsupportedJdkVersion = JavaVersion.VERSION_22,
),

// stable
GRADLE_8_10(
value = "8.10",
value = "8.10.2",
),
;

Expand Down

0 comments on commit a40d994

Please sign in to comment.