diff options
author | Kamil Doległo <kamilok1965@interia.pl> | 2021-07-07 17:51:57 +0200 |
---|---|---|
committer | Kamil Doległo <kamilok1965@interia.pl> | 2021-07-07 17:51:57 +0200 |
commit | 4ef5075a78fd7b65b63c746975b749b3c8b68436 (patch) | |
tree | f7e2667c9fca0adefbf2d355d3bd38573b83f0db /README.md | |
parent | 54b215b4866e6e8fb99e672100a5674fb94ab3d9 (diff) | |
download | dokka-4ef5075a78fd7b65b63c746975b749b3c8b68436.tar.gz dokka-4ef5075a78fd7b65b63c746975b749b3c8b68436.tar.bz2 dokka-4ef5075a78fd7b65b63c746975b749b3c8b68436.zip |
Update the docs to 1.5.0
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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.32/](https://kotlin.github.io/dokka/1.4.32/)** +**Full documentation is available at [https://kotlin.github.io/dokka/1.5.0/](https://kotlin.github.io/dokka/1.5.0/)** ### 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 @@ -18,7 +18,7 @@ The preferred way is to use `plugins` block. build.gradle.kts: ```kotlin plugins { - id("org.jetbrains.dokka") version "1.4.32" + id("org.jetbrains.dokka") version "1.5.0" } repositories { @@ -33,7 +33,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.32") + dokkaHtmlPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.5.0") } ``` @@ -42,7 +42,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.32") + plugins("org.jetbrains.dokka:kotlin-as-java-plugin:1.5.0") } } ``` |