From 47ee7fbcf5f68cbd80c056fcaa8ecdea4186d32a Mon Sep 17 00:00:00 2001 From: Oleg Yukhnevich Date: Tue, 10 Dec 2024 16:15:34 +0200 Subject: [PATCH] Update the version to the 2.0.0 release --- 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..8dd3b4eb3a 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 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..ddbc2782d5 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" 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..3d39536009 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" 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..351a16e269 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 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..08babb7d32 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 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..cb9caafcac 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 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..b03072a213 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 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 8d5f013773..a08762dd90 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 "2.1.0" - id("org.jetbrains.dokka") version "2.0.20-SNAPSHOT" + id("org.jetbrains.dokka") version "2.0.0" } 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 6512d1a314..4b127b458d 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:2.1.0") - val dokkaVersion = providers.gradleProperty("dokkaVersion").getOrElse("2.0.20-SNAPSHOT") + val dokkaVersion = providers.gradleProperty("dokkaVersion").getOrElse("2.0.0") 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 6153851115..c3f15c68ab 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 "2.1.0" - id("org.jetbrains.dokka") version "2.0.20-SNAPSHOT" + id("org.jetbrains.dokka") version "2.0.0" } dokka { diff --git a/examples/gradle-v2/java-example/buildSrc/build.gradle.kts b/examples/gradle-v2/java-example/buildSrc/build.gradle.kts index 6512d1a314..4b127b458d 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:2.1.0") - val dokkaVersion = providers.gradleProperty("dokkaVersion").getOrElse("2.0.20-SNAPSHOT") + val dokkaVersion = providers.gradleProperty("dokkaVersion").getOrElse("2.0.0") 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 960e411aa1..0639c00c0a 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 "2.1.0" - id("org.jetbrains.dokka-javadoc") version "2.0.20-SNAPSHOT" + id("org.jetbrains.dokka-javadoc") version "2.0.0" } 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 e251904c09..349451177e 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 "2.1.0" - id("org.jetbrains.dokka") version "2.0.20-SNAPSHOT" + id("org.jetbrains.dokka") version "2.0.0" } dependencies { diff --git a/examples/gradle-v2/kotlin-multiplatform-example/build.gradle.kts b/examples/gradle-v2/kotlin-multiplatform-example/build.gradle.kts index 0be6b4713a..4b3a6b3055 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 "2.1.0" - id("org.jetbrains.dokka") version "2.0.20-SNAPSHOT" + id("org.jetbrains.dokka") version "2.0.0" } 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 8fa80c1c04..86fc77a4b0 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 "2.1.0" - 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" + id("org.jetbrains.dokka-javadoc") version "2.0.0" `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 6512d1a314..4b127b458d 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:2.1.0") - val dokkaVersion = providers.gradleProperty("dokkaVersion").getOrElse("2.0.20-SNAPSHOT") + val dokkaVersion = providers.gradleProperty("dokkaVersion").getOrElse("2.0.0") 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 6512d1a314..4b127b458d 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:2.1.0") - val dokkaVersion = providers.gradleProperty("dokkaVersion").getOrElse("2.0.20-SNAPSHOT") + val dokkaVersion = providers.gradleProperty("dokkaVersion").getOrElse("2.0.0") implementation("org.jetbrains.dokka:dokka-gradle-plugin:$dokkaVersion") } diff --git a/gradle.properties b/gradle.properties index 8dcd75862c..fdd603b047 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 org.jetbrains.dokka.javaToolchain.mainCompiler=8 org.jetbrains.dokka.javaToolchain.testLauncher=8