diff options
author | Ignat Beresnev <ignat.beresnev@jetbrains.com> | 2022-10-12 15:10:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-12 15:10:34 +0200 |
commit | 25bc442c783bb94899bb02de0f01af092f82ae81 (patch) | |
tree | f1daafe8723caf74fa70d3fe4568c4ebddbccd69 /README.md | |
parent | 83174361becb2af227159834cdf6e14db9300c53 (diff) | |
download | dokka-25bc442c783bb94899bb02de0f01af092f82ae81.tar.gz dokka-25bc442c783bb94899bb02de0f01af092f82ae81.tar.bz2 dokka-25bc442c783bb94899bb02de0f01af092f82ae81.zip |
Update documentation and examples for 1.7.20 (#2697)
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -11,7 +11,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.7.10/](https://kotlin.github.io/dokka/1.7.10/)** +**Full documentation is available at [https://kotlin.github.io/dokka/1.7.20/](https://kotlin.github.io/dokka/1.7.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 @@ -22,7 +22,7 @@ The preferred way is to use `plugins` block. build.gradle.kts: ```kotlin plugins { - id("org.jetbrains.dokka") version "1.7.10" + id("org.jetbrains.dokka") version "1.7.20" } repositories { @@ -37,7 +37,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.7.10") + dokkaHtmlPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.7.20") } ``` @@ -46,7 +46,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.7.10") + plugins("org.jetbrains.dokka:kotlin-as-java-plugin:1.7.20") } } ``` |