aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorPaweł Marks <pmarks@virtuslab.com>2020-08-03 14:32:13 +0200
committerPaweł Marks <pmarks@virtuslab.com>2020-08-03 14:32:13 +0200
commite9c9d8205e83269a38f64226e043e08a5877d8cd (patch)
tree0d80726159305a29bfb0e122688bd8b1b1092d0d /README.md
parentb84bd718c4bbe86eb7d08df7c9ddd68afcf00be2 (diff)
downloaddokka-e9c9d8205e83269a38f64226e043e08a5877d8cd.tar.gz
dokka-e9c9d8205e83269a38f64226e043e08a5877d8cd.tar.bz2
dokka-e9c9d8205e83269a38f64226e043e08a5877d8cd.zip
Change version in readme to 1.4.0-rc
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 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 <arguments>