aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorMarcin Aman <marcin.aman@gmail.com>2020-12-03 10:35:02 +0100
committerGitHub <noreply@github.com>2020-12-03 10:35:02 +0100
commit166b4e69854e238c5b7f0a0d999825312129c24f (patch)
tree4fd1c6161d644e882f6157653c7220e37473e43f /README.md
parent91ee8fca6fa910c1fd966c97b58398d4d9981440 (diff)
downloaddokka-166b4e69854e238c5b7f0a0d999825312129c24f.tar.gz
dokka-166b4e69854e238c5b7f0a0d999825312129c24f.tar.bz2
dokka-166b4e69854e238c5b7f0a0d999825312129c24f.zip
Update Dokka version to 1.4.20 (#1632)
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index 63654636..a2896783 100644
--- a/README.md
+++ b/README.md
@@ -7,7 +7,7 @@ and can generate documentation in multiple formats including standard Javadoc, H
## Using Dokka
-**Full documentation is available at [https://kotlin.github.io/dokka/1.4.10.2/](https://kotlin.github.io/dokka/1.4.10.2/)**
+**Full documentation is available at [https://kotlin.github.io/dokka/1.4.20/](https://kotlin.github.io/dokka/1.4.20/)**
### Using the Gradle plugin
_Note: If you are upgrading from 0.10.x to a current release of Dokka, please have a look at our
@@ -19,7 +19,7 @@ you not only need to add `org.jetbrains.dokka` to the `build.gradle.kts` file, b
build.gradle.kts:
```kotlin
plugins {
- id("org.jetbrains.dokka") version "1.4.10.2"
+ id("org.jetbrains.dokka") version "1.4.20"
}
repositories {
@@ -44,7 +44,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.10.2")
+ dokkaHtmlPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.4.20")
}
```
@@ -53,7 +53,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.10.2")
+ plugins("org.jetbrains.dokka:kotlin-as-java-plugin:1.4.20")
}
}
```