From 326580628faeafe153eb5f36cc3a6c73a15dfba6 Mon Sep 17 00:00:00 2001 From: Oleg Yukhnevich Date: Wed, 2 Oct 2024 11:02:55 +0300 Subject: [PATCH] Update Dokka version to 2.0.0-Beta --- dokka-integration-tests/gradle.properties | 2 +- .../gradle/projects/it-basic/build.gradle.kts | 2 +- .../gradle/projects/it-configuration/build.gradle.kts | 2 +- .../kotlin/BasicGradleIntegrationTest.kt | 2 +- dokka-runners/dokka-gradle-plugin/gradle.properties | 2 +- dokka-runners/runner-cli/gradle.properties | 2 +- dokka-runners/runner-maven-plugin/gradle.properties | 2 +- examples/gradle-v2/basic-gradle-example/build.gradle.kts | 2 +- .../composite-build-example/build-logic/build.gradle.kts | 2 +- examples/gradle-v2/custom-styling-example/build.gradle.kts | 2 +- examples/gradle-v2/java-example/buildSrc/build.gradle.kts | 2 +- examples/gradle-v2/javadoc-example/build.gradle.kts | 2 +- examples/gradle-v2/kotlin-as-java-example/build.gradle.kts | 2 +- .../gradle-v2/kotlin-multiplatform-example/build.gradle.kts | 2 +- .../gradle-v2/library-publishing-example/build.gradle.kts | 4 ++-- .../gradle-v2/multimodule-example/buildSrc/build.gradle.kts | 2 +- .../versioning-multimodule-example/buildSrc/build.gradle.kts | 2 +- gradle.properties | 2 +- 18 files changed, 19 insertions(+), 19 deletions(-) diff --git a/dokka-integration-tests/gradle.properties b/dokka-integration-tests/gradle.properties index 40a68bf292..d58a03f534 100644 --- a/dokka-integration-tests/gradle.properties +++ b/dokka-integration-tests/gradle.properties @@ -5,7 +5,7 @@ # while integration test projects aren't published, # the version here should be in sync with other versions, # because it's used to resolve dependencies -version=2.0.20-SNAPSHOT +version=2.0.0-Beta org.jetbrains.dokka.javaToolchain.mainCompiler=8 org.jetbrains.dokka.javaToolchain.testLauncher=8 diff --git a/dokka-integration-tests/gradle/projects/it-basic/build.gradle.kts b/dokka-integration-tests/gradle/projects/it-basic/build.gradle.kts index 9e9b0361b3..89b588c07d 100644 --- a/dokka-integration-tests/gradle/projects/it-basic/build.gradle.kts +++ b/dokka-integration-tests/gradle/projects/it-basic/build.gradle.kts @@ -20,7 +20,7 @@ buildscript { } } -version = "2.0.20-SNAPSHOT" +version = "2.0.0-Beta" dependencies { testImplementation(kotlin("test-junit")) diff --git a/dokka-integration-tests/gradle/projects/it-configuration/build.gradle.kts b/dokka-integration-tests/gradle/projects/it-configuration/build.gradle.kts index e9239b7d55..c55a1be909 100644 --- a/dokka-integration-tests/gradle/projects/it-configuration/build.gradle.kts +++ b/dokka-integration-tests/gradle/projects/it-configuration/build.gradle.kts @@ -16,7 +16,7 @@ buildscript { } } -version = "2.0.20-SNAPSHOT" +version = "2.0.0-Beta" tasks.withType { moduleName.set("Configuration Test Project") diff --git a/dokka-integration-tests/gradle/src/testTemplateProjectBasic/kotlin/BasicGradleIntegrationTest.kt b/dokka-integration-tests/gradle/src/testTemplateProjectBasic/kotlin/BasicGradleIntegrationTest.kt index ca899f033c..0b90b4ba67 100644 --- a/dokka-integration-tests/gradle/src/testTemplateProjectBasic/kotlin/BasicGradleIntegrationTest.kt +++ b/dokka-integration-tests/gradle/src/testTemplateProjectBasic/kotlin/BasicGradleIntegrationTest.kt @@ -139,7 +139,7 @@ class BasicGradleIntegrationTest : AbstractGradleIntegrationTest() { val indexFile = File(this, "index.html") assertTrue(indexFile.isFile, "Missing index.html") assertTrue( - """Basic Project 2.0.20-SNAPSHOT API """ in indexFile.readText(), + """Basic Project 2.0.0-Beta API """ in indexFile.readText(), "Header with version number not present in index.html" ) diff --git a/dokka-runners/dokka-gradle-plugin/gradle.properties b/dokka-runners/dokka-gradle-plugin/gradle.properties index 3720e4947b..8d9e83eee8 100644 --- a/dokka-runners/dokka-gradle-plugin/gradle.properties +++ b/dokka-runners/dokka-gradle-plugin/gradle.properties @@ -4,7 +4,7 @@ # Project Settings group=org.jetbrains.dokka -version=2.0.20-SNAPSHOT +version=2.0.0-Beta org.jetbrains.dokka.javaToolchain.mainCompiler=8 org.jetbrains.dokka.javaToolchain.testLauncher=8 diff --git a/dokka-runners/runner-cli/gradle.properties b/dokka-runners/runner-cli/gradle.properties index d1fa567e12..533460c268 100644 --- a/dokka-runners/runner-cli/gradle.properties +++ b/dokka-runners/runner-cli/gradle.properties @@ -4,7 +4,7 @@ # Project Settings group=org.jetbrains.dokka -version=2.0.20-SNAPSHOT +version=2.0.0-Beta org.jetbrains.dokka.javaToolchain.mainCompiler=8 org.jetbrains.dokka.javaToolchain.testLauncher=8 diff --git a/dokka-runners/runner-maven-plugin/gradle.properties b/dokka-runners/runner-maven-plugin/gradle.properties index ef6f8e039b..085823e3fb 100644 --- a/dokka-runners/runner-maven-plugin/gradle.properties +++ b/dokka-runners/runner-maven-plugin/gradle.properties @@ -2,7 +2,7 @@ # Copyright 2014-2024 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. # group=org.jetbrains.dokka -version=2.0.20-SNAPSHOT +version=2.0.0-Beta org.jetbrains.dokka.javaToolchain.mainCompiler=8 org.jetbrains.dokka.javaToolchain.testLauncher=8 diff --git a/examples/gradle-v2/basic-gradle-example/build.gradle.kts b/examples/gradle-v2/basic-gradle-example/build.gradle.kts index e475b069e0..6d7487497d 100644 --- a/examples/gradle-v2/basic-gradle-example/build.gradle.kts +++ b/examples/gradle-v2/basic-gradle-example/build.gradle.kts @@ -1,6 +1,6 @@ plugins { kotlin("jvm") version "1.9.23" - id("org.jetbrains.dokka") version "2.0.20-SNAPSHOT" + id("org.jetbrains.dokka") version "2.0.0-Beta" } dokka { diff --git a/examples/gradle-v2/composite-build-example/build-logic/build.gradle.kts b/examples/gradle-v2/composite-build-example/build-logic/build.gradle.kts index ce6c1b64c2..b7a05d7f4b 100644 --- a/examples/gradle-v2/composite-build-example/build-logic/build.gradle.kts +++ b/examples/gradle-v2/composite-build-example/build-logic/build.gradle.kts @@ -4,6 +4,6 @@ plugins { dependencies { implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:$embeddedKotlinVersion") - val dokkaVersion = providers.gradleProperty("dokkaVersion").getOrElse("2.0.20-SNAPSHOT") + val dokkaVersion = providers.gradleProperty("dokkaVersion").getOrElse("2.0.0-Beta") implementation("org.jetbrains.dokka:dokka-gradle-plugin:$dokkaVersion") } diff --git a/examples/gradle-v2/custom-styling-example/build.gradle.kts b/examples/gradle-v2/custom-styling-example/build.gradle.kts index 4191f76dea..d9c8ef74d1 100644 --- a/examples/gradle-v2/custom-styling-example/build.gradle.kts +++ b/examples/gradle-v2/custom-styling-example/build.gradle.kts @@ -1,6 +1,6 @@ plugins { kotlin("jvm") version "1.9.25" - id("org.jetbrains.dokka") version "2.0.20-SNAPSHOT" + id("org.jetbrains.dokka") version "2.0.0-Beta" } dokka { diff --git a/examples/gradle-v2/java-example/buildSrc/build.gradle.kts b/examples/gradle-v2/java-example/buildSrc/build.gradle.kts index c547dc3bc5..643ff3e7a3 100644 --- a/examples/gradle-v2/java-example/buildSrc/build.gradle.kts +++ b/examples/gradle-v2/java-example/buildSrc/build.gradle.kts @@ -4,6 +4,6 @@ plugins { dependencies { implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.25") - val dokkaVersion = providers.gradleProperty("dokkaVersion").getOrElse("2.0.20-SNAPSHOT") + val dokkaVersion = providers.gradleProperty("dokkaVersion").getOrElse("2.0.0-Beta") implementation("org.jetbrains.dokka:dokka-gradle-plugin:$dokkaVersion") } diff --git a/examples/gradle-v2/javadoc-example/build.gradle.kts b/examples/gradle-v2/javadoc-example/build.gradle.kts index a91821dc48..57aa2131ff 100644 --- a/examples/gradle-v2/javadoc-example/build.gradle.kts +++ b/examples/gradle-v2/javadoc-example/build.gradle.kts @@ -1,6 +1,6 @@ plugins { kotlin("jvm") version "1.9.23" - id("org.jetbrains.dokka-javadoc") version "2.0.20-SNAPSHOT" + id("org.jetbrains.dokka-javadoc") version "2.0.0-Beta" } dokka { diff --git a/examples/gradle-v2/kotlin-as-java-example/build.gradle.kts b/examples/gradle-v2/kotlin-as-java-example/build.gradle.kts index 5f29fef9c2..00e130c6ef 100644 --- a/examples/gradle-v2/kotlin-as-java-example/build.gradle.kts +++ b/examples/gradle-v2/kotlin-as-java-example/build.gradle.kts @@ -4,7 +4,7 @@ plugins { kotlin("jvm") version "1.9.25" - id("org.jetbrains.dokka") version "2.0.20-SNAPSHOT" + id("org.jetbrains.dokka") version "2.0.0-Beta" } dependencies { diff --git a/examples/gradle-v2/kotlin-multiplatform-example/build.gradle.kts b/examples/gradle-v2/kotlin-multiplatform-example/build.gradle.kts index e6fac67c31..66ec334ba5 100644 --- a/examples/gradle-v2/kotlin-multiplatform-example/build.gradle.kts +++ b/examples/gradle-v2/kotlin-multiplatform-example/build.gradle.kts @@ -1,6 +1,6 @@ plugins { kotlin("multiplatform") version "1.9.25" - id("org.jetbrains.dokka") version "2.0.20-SNAPSHOT" + id("org.jetbrains.dokka") version "2.0.0-Beta" } group = "org.dokka.example" diff --git a/examples/gradle-v2/library-publishing-example/build.gradle.kts b/examples/gradle-v2/library-publishing-example/build.gradle.kts index 70e029f3bb..f96c243524 100644 --- a/examples/gradle-v2/library-publishing-example/build.gradle.kts +++ b/examples/gradle-v2/library-publishing-example/build.gradle.kts @@ -1,7 +1,7 @@ plugins { kotlin("jvm") version "1.9.25" - id("org.jetbrains.dokka") version "2.0.20-SNAPSHOT" - id("org.jetbrains.dokka-javadoc") version "2.0.20-SNAPSHOT" + id("org.jetbrains.dokka") version "2.0.0-Beta" + id("org.jetbrains.dokka-javadoc") version "2.0.0-Beta" `maven-publish` } diff --git a/examples/gradle-v2/multimodule-example/buildSrc/build.gradle.kts b/examples/gradle-v2/multimodule-example/buildSrc/build.gradle.kts index c547dc3bc5..643ff3e7a3 100644 --- a/examples/gradle-v2/multimodule-example/buildSrc/build.gradle.kts +++ b/examples/gradle-v2/multimodule-example/buildSrc/build.gradle.kts @@ -4,6 +4,6 @@ plugins { dependencies { implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.25") - val dokkaVersion = providers.gradleProperty("dokkaVersion").getOrElse("2.0.20-SNAPSHOT") + val dokkaVersion = providers.gradleProperty("dokkaVersion").getOrElse("2.0.0-Beta") implementation("org.jetbrains.dokka:dokka-gradle-plugin:$dokkaVersion") } diff --git a/examples/gradle-v2/versioning-multimodule-example/buildSrc/build.gradle.kts b/examples/gradle-v2/versioning-multimodule-example/buildSrc/build.gradle.kts index c547dc3bc5..643ff3e7a3 100644 --- a/examples/gradle-v2/versioning-multimodule-example/buildSrc/build.gradle.kts +++ b/examples/gradle-v2/versioning-multimodule-example/buildSrc/build.gradle.kts @@ -4,6 +4,6 @@ plugins { dependencies { implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.25") - val dokkaVersion = providers.gradleProperty("dokkaVersion").getOrElse("2.0.20-SNAPSHOT") + val dokkaVersion = providers.gradleProperty("dokkaVersion").getOrElse("2.0.0-Beta") implementation("org.jetbrains.dokka:dokka-gradle-plugin:$dokkaVersion") } diff --git a/gradle.properties b/gradle.properties index 8dcd75862c..18c6ed166d 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,7 +4,7 @@ # Project Settings group=org.jetbrains.dokka -version=2.0.20-SNAPSHOT +version=2.0.0-Beta org.jetbrains.dokka.javaToolchain.mainCompiler=8 org.jetbrains.dokka.javaToolchain.testLauncher=8