Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Dokka's references to 1.9.0 #3154

Merged
merged 2 commits into from
Sep 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ Bug reports, feature requests and questions are welcome. Submit issues [here](ht

## Submitting PRs

Dokka has extensive [Developer Guides](https://kotlin.github.io/dokka/1.8.20/developer_guide/introduction/) documentation
which goes over the development [Workflow](https://kotlin.github.io/dokka/1.8.20/developer_guide/workflow/) and
[Dokka's architecture](https://kotlin.github.io/dokka/1.8.20/developer_guide/architecture/architecture_overview/),
Dokka has extensive [Developer Guides](https://kotlin.github.io/dokka/1.9.0/developer_guide/introduction/) documentation
which goes over the development [Workflow](https://kotlin.github.io/dokka/1.9.0/developer_guide/workflow/) and
[Dokka's architecture](https://kotlin.github.io/dokka/1.9.0/developer_guide/architecture/architecture_overview/),
which can help you understand how to achieve what you want and where to look.

All development (both new features and bugfixes) takes place in the `master` branch, it contains sources for the next
Expand Down Expand Up @@ -61,18 +61,18 @@ Unit tests which are run as part of `build` should not take much time, but you c
### Use/test locally built Dokka

Below you will find a bare-bones instruction on how to use and test locally built Dokka. For more details and examples,
visit [Workflow](https://kotlin.github.io/dokka/1.8.20/developer_guide/workflow/) topic.
visit [Workflow](https://kotlin.github.io/dokka/1.9.0/developer_guide/workflow/) topic.

1. Change `dokka_version` in `gradle.properties` to something that you will use later on as the dependency version.
For instance, you can set it to something like `1.8.20-my-fix-SNAPSHOT`.
For instance, you can set it to something like `1.9.0-my-fix-SNAPSHOT`.
2. Publish it to Maven Local (`./gradlew publishToMavenLocal`)
3. In the project for which you want to generate documentation add Maven Local as a buildscript/dependency
repository (`mavenLocal()`)
4. Update your Dokka dependency to the version you've just published:

```kotlin
plugins {
id("org.jetbrains.dokka") version "1.8.20-my-fix-SNAPSHOT"
id("org.jetbrains.dokka") version "1.9.0-my-fix-SNAPSHOT"
}
```

Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Apply the Gradle plugin for Dokka in the root build script of your project:

```kotlin
plugins {
id("org.jetbrains.dokka") version "1.8.20"
id("org.jetbrains.dokka") version "1.9.0"
}
```

Expand All @@ -65,7 +65,7 @@ Apply Gradle plugin for Dokka in the root project:

```groovy
plugins {
id 'org.jetbrains.dokka' version '1.8.20'
id 'org.jetbrains.dokka' version '1.9.0'
}
```

Expand Down Expand Up @@ -99,7 +99,7 @@ Add the Dokka Maven plugin to the `plugins` section of your POM file:
<plugin>
<groupId>org.jetbrains.dokka</groupId>
<artifactId>dokka-maven-plugin</artifactId>
<version>1.8.20</version>
<version>1.9.0</version>
<executions>
<execution>
<phase>pre-site</phase>
Expand Down Expand Up @@ -138,7 +138,7 @@ Android platform:

```kotlin
dependencies {
dokkaPlugin("org.jetbrains.dokka:android-documentation-plugin:1.8.20")
dokkaPlugin("org.jetbrains.dokka:android-documentation-plugin:1.9.0")
}
```

Expand All @@ -149,7 +149,7 @@ dependencies {

```groovy
dependencies {
dokkaPlugin 'org.jetbrains.dokka:android-documentation-plugin:1.8.20'
dokkaPlugin 'org.jetbrains.dokka:android-documentation-plugin:1.9.0'
}
```

Expand All @@ -168,7 +168,7 @@ dependencies {
<plugin>
<groupId>org.jetbrains.dokka</groupId>
<artifactId>android-documentation-plugin</artifactId>
<version>1.8.20</version>
<version>1.9.0</version>
</plugin>
</dokkaPlugins>
</configuration>
Expand Down Expand Up @@ -215,7 +215,7 @@ implement plugins for missing or very specific features that are not provided ou
Learn more about Dokka plugins and their configuration in [Dokka plugins](https://kotlinlang.org/docs/dokka-plugins.html).

If you want to learn how to develop Dokka plugins, see
[Developer guides](https://kotlin.github.io/dokka/1.8.20/developer_guide/introduction/).
[Developer guides](https://kotlin.github.io/dokka/1.9.0/developer_guide/introduction/).

## Community

Expand Down
4 changes: 2 additions & 2 deletions docs-developer/src/doc/docs/developer_guide/workflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Having built Dokka locally, you can publish it to `mavenLocal()`. This will allo
project as well as debug code remotely.

1. Change `dokka_version` in `gradle.properties` to something that you will use later on as the dependency version.
For instance, you can set it to something like `1.8.20-my-fix-SNAPSHOT`. This version will be propagated to plugins
For instance, you can set it to something like `1.9.0-my-fix-SNAPSHOT`. This version will be propagated to plugins
that reside inside Dokka's project (such as `mathjax`, `kotlin-as-java`, etc).
2. Publish it to Maven Local (`./gradlew publishToMavenLocal`). Corresponding artifacts should appear in `~/.m2`
3. In the project you want to generate documentation for or debug on, add maven local as a plugin/dependency
Expand All @@ -55,7 +55,7 @@ repositories {
4. Update your Dokka dependency to the version you've just published:
```kotlin
plugins {
id("org.jetbrains.dokka") version "1.8.20-my-fix-SNAPSHOT"
id("org.jetbrains.dokka") version "1.9.0-my-fix-SNAPSHOT"
}
```

Expand Down
4 changes: 2 additions & 2 deletions docs/v.list
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

<vars>
<var name="dokkaVersion"
value="1.8.20"
value="1.9.0"
type="string"/>
<var name="kotlinVersion"
value="1.8.20"
value="1.9.0"
type="string"/>
</vars>
4 changes: 2 additions & 2 deletions examples/gradle/dokka-customFormat-example/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ import org.jetbrains.dokka.base.DokkaBaseConfiguration

plugins {
kotlin("jvm") version "1.9.0"
id("org.jetbrains.dokka") version "1.8.20"
id("org.jetbrains.dokka") version "1.9.0"
}

buildscript {
dependencies {
classpath("org.jetbrains.dokka:dokka-base:1.8.20")
classpath("org.jetbrains.dokka:dokka-base:1.9.0")
}
}

Expand Down
2 changes: 1 addition & 1 deletion examples/gradle/dokka-gradle-example/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import java.net.URL

plugins {
kotlin("jvm") version "1.9.0"
id("org.jetbrains.dokka") version "1.8.20"
id("org.jetbrains.dokka") version "1.9.0"
}

repositories {
Expand Down
8 changes: 4 additions & 4 deletions examples/gradle/dokka-kotlinAsJava-example/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

plugins {
kotlin("jvm") version "1.9.0"
id("org.jetbrains.dokka") version "1.8.20"
id("org.jetbrains.dokka") version "1.9.0"
}

repositories {
Expand All @@ -15,11 +15,11 @@ dependencies {
testImplementation(kotlin("test-junit"))

// Will apply the plugin to all Dokka tasks
dokkaPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.8.20")
dokkaPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.9.0")

// Will apply the plugin only to the `:dokkaHtml` task
//dokkaHtmlPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.8.20")
//dokkaHtmlPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.9.0")

// Will apply the plugin only to the `:dokkaGfm` task
//dokkaGfmPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.8.20")
//dokkaGfmPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.9.0")
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

plugins {
kotlin("jvm") version "1.9.0"
id("org.jetbrains.dokka") version "1.8.20"
id("org.jetbrains.dokka") version "1.9.0"
`java-library`
`maven-publish`
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
#

kotlinVersion=1.9.0
dokkaVersion=1.8.20
dokkaVersion=1.9.0
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import org.jetbrains.dokka.Platform

plugins {
kotlin("multiplatform") version "1.9.0"
id("org.jetbrains.dokka") version "1.8.20"
id("org.jetbrains.dokka") version "1.9.0"
}

repositories {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

plugins {
kotlin("jvm") version "1.9.0"
id("org.jetbrains.dokka") version "1.8.20" apply false
id("org.jetbrains.dokka") version "1.9.0" apply false
}

// The versioning plugin must be applied in all submodules
Expand All @@ -18,6 +18,6 @@ subprojects {
}
val dokkaPlugin by configurations
dependencies {
dokkaPlugin("org.jetbrains.dokka:versioning-plugin:1.8.20")
dokkaPlugin("org.jetbrains.dokka:versioning-plugin:1.9.0")
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import org.jetbrains.dokka.versioning.VersioningConfiguration

buildscript {
dependencies {
classpath("org.jetbrains.dokka:versioning-plugin:1.8.20")
classpath("org.jetbrains.dokka:versioning-plugin:1.9.0")
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion examples/maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<version>1.0-SNAPSHOT</version>
<properties>
<kotlin.version>1.9.0</kotlin.version>
<dokka.version>1.8.20</dokka.version>
<dokka.version>1.9.0</dokka.version>
</properties>

<dependencies>
Expand Down
4 changes: 2 additions & 2 deletions examples/plugin/hide-internal-api/README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# Hide Internal API plugin example

This project represents a simple Dokka Plugin that was developed step-by-step in the
[Sample plugin](https://kotlin.github.io/dokka/1.8.20/developer_guide/plugin-development/sample-plugin-tutorial/)
[Sample plugin](https://kotlin.github.io/dokka/1.9.0/developer_guide/plugin-development/sample-plugin-tutorial/)
tutorial. This is a frequent request with varying requirements.

The plugin excludes any declaration that is marked with `org.jetbrains.dokka.internal.test.Internal` annotation.
The annotation itself is not provided in this project and is instead matched by the fully qualified name only.
You can change it to your own internal annotation or to some other marker that suits you.

To learn how to install and debug it locally,
[see documentation](https://kotlin.github.io/dokka/1.8.20/developer_guide/plugin-development/sample-plugin-tutorial/#debugging).
[see documentation](https://kotlin.github.io/dokka/1.9.0/developer_guide/plugin-development/sample-plugin-tutorial/#debugging).

___

Expand Down
2 changes: 1 addition & 1 deletion examples/plugin/hide-internal-api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import java.net.URI

plugins {
kotlin("jvm") version "1.9.0"
id("org.jetbrains.dokka") version "1.8.20"
id("org.jetbrains.dokka") version "1.9.0"
`maven-publish`
signing
}
Expand Down
2 changes: 1 addition & 1 deletion examples/plugin/hide-internal-api/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
#

dokkaVersion=1.8.20
dokkaVersion=1.9.0
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
gradlePlugin-kotlin = "1.9.0"
# See: https://kotlinlang.org/docs/gradle-configure-project.html#apply-the-plugin
gradlePlugin-android = "4.2.2"
gradlePlugin-dokka = "1.8.20"
gradlePlugin-dokka = "1.9.0"

kotlinx-coroutines = "1.6.3"
kotlinx-collections-immutable = "0.3.4"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ buildscript {
}
}

version = "1.8.20-SNAPSHOT"
version = "1.9.0-SNAPSHOT"

apply(from = "../template.root.gradle.kts")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ buildscript {
}
}

version = "1.8.20-SNAPSHOT"
version = "1.9.0-SNAPSHOT"

apply(from = "../template.root.gradle.kts")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ class BasicGradleIntegrationTest : AbstractGradleIntegrationTest() {
val indexFile = File(this, "index.html")
assertTrue(indexFile.isFile, "Missing index.html")
assertTrue(
"""<title>Basic Project 1.8.20-SNAPSHOT API </title>""" in indexFile.readText(),
"""<title>Basic Project 1.9.0-SNAPSHOT API </title>""" in indexFile.readText(),
"Header with version number not present in index.html"
)

Expand Down
2 changes: 1 addition & 1 deletion plugins/kotlin-as-java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The Kotlin as Java plugin is published to maven central as a
[separate artifact](https://mvnrepository.com/artifact/org.jetbrains.dokka/kotlin-as-java-plugin):

```text
org.jetbrains.dokka:kotlin-as-java-plugin:1.8.20
org.jetbrains.dokka:kotlin-as-java-plugin:1.9.0
```

**This plugin is at its early stages**, so you may experience issues and encounter bugs. Feel free to
Expand Down
2 changes: 1 addition & 1 deletion plugins/mathjax/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ The MathJax plugin is published to Maven Central as a
[separate artifact](https://mvnrepository.com/artifact/org.jetbrains.dokka/mathjax-plugin):

```text
org.jetbrains.dokka:mathjax-plugin:1.8.20
org.jetbrains.dokka:mathjax-plugin:1.9.0
```
Loading
Loading