aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorsebastian.sellmair <sebastian.sellmair@jetbrains.com>2020-09-03 14:02:49 +0200
committerSebastian Sellmair <34319766+sellmair@users.noreply.github.com>2020-09-03 14:06:58 +0200
commitfb4b7adbddcc085c36a7c1d520131f55b963d2e3 (patch)
treeda615b49ed0c6a2d4a4d2d0eed241a78c654120a /docs
parentfc6948f8df66259db68097bb8e8b8fa819382778 (diff)
downloaddokka-fb4b7adbddcc085c36a7c1d520131f55b963d2e3.tar.gz
dokka-fb4b7adbddcc085c36a7c1d520131f55b963d2e3.tar.bz2
dokka-fb4b7adbddcc085c36a7c1d520131f55b963d2e3.zip
Upgrade version number to 1.4.0 in README.md, CONTRIBUTING.md and usage.md
Diffstat (limited to 'docs')
-rw-r--r--docs/src/doc/docs/user_guide/cli/usage.md2
-rw-r--r--docs/src/doc/docs/user_guide/gradle/usage.md6
2 files changed, 4 insertions, 4 deletions
diff --git a/docs/src/doc/docs/user_guide/cli/usage.md b/docs/src/doc/docs/user_guide/cli/usage.md
index 36b0a549..12bd9eb9 100644
--- a/docs/src/doc/docs/user_guide/cli/usage.md
+++ b/docs/src/doc/docs/user_guide/cli/usage.md
@@ -1,6 +1,6 @@
# Using command line
-To run Dokka from the command line, download the [Dokka CLI runner](https://github.com/Kotlin/dokka/releases/download/v1.4.0-rc/dokka-cli-1.4.0-rc.jar).
+To run Dokka from the command line, download the [Dokka CLI runner](https://github.com/Kotlin/dokka/releases/download/v1.4.0/dokka-cli-1.4.0.jar).
To generate documentation, run the following command:
```
java -jar dokka-cli.jar <arguments>
diff --git a/docs/src/doc/docs/user_guide/gradle/usage.md b/docs/src/doc/docs/user_guide/gradle/usage.md
index 130d3de5..2e7243d7 100644
--- a/docs/src/doc/docs/user_guide/gradle/usage.md
+++ b/docs/src/doc/docs/user_guide/gradle/usage.md
@@ -10,7 +10,7 @@ you not only need to add `dokka` to the `build.gradle.kts` file, but you also ne
build.gradle.kts:
```kotlin
plugins {
- id("org.jetbrains.dokka") version "1.4.0-rc"
+ id("org.jetbrains.dokka") version "1.4.0"
}
repositories {
@@ -226,7 +226,7 @@ Dokka plugin creates Gradle configuration for each output format in the form of
```kotlin
dependencies {
- dokkaHtmlPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.4.0-rc")
+ dokkaHtmlPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.4.0")
}
```
@@ -235,7 +235,7 @@ You can also create a custom Dokka task and add plugins directly inside:
```kotlin
val customDokkaTask by creating(DokkaTask::class) {
dependencies {
- plugins("org.jetbrains.dokka:kotlin-as-java-plugin:1.4.0-rc")
+ plugins("org.jetbrains.dokka:kotlin-as-java-plugin:1.4.0")
}
}
```