From e9c9d8205e83269a38f64226e043e08a5877d8cd Mon Sep 17 00:00:00 2001 From: Paweł Marks Date: Mon, 3 Aug 2020 14:32:13 +0200 Subject: Change version in readme to 1.4.0-rc --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 11dbd36f..b06a6912 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,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-M3" + id("org.jetbrains.dokka") version "1.4.0-rc" } repositories { @@ -346,7 +346,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-M3") + dokkaHtmlPlugin("org.jetbrains.dokka:kotlin-as-java-plugin:1.4.0-rc") } ``` @@ -355,7 +355,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-M3") + plugins("org.jetbrains.dokka:kotlin-as-java-plugin:1.4.0-rc") } } ``` @@ -619,7 +619,7 @@ Please see the [Dokka Maven example project](https://github.com/JetBrains/kotlin ### Using the Command Line -To run Dokka from the command line, download the [Dokka CLI runner](https://github.com/Kotlin/dokka/releases/download/1.4-M3/dokka-cli.jar). +To run Dokka from the command line, download the [Dokka CLI runner](https://github.com/Kotlin/dokka/releases/download/1.4.0-rc/dokka-cli.jar). To generate documentation, run the following command: ``` java -jar dokka-cli.jar -- cgit