diff options
author | Ignat Beresnev <ignat.beresnev@jetbrains.com> | 2023-06-06 14:51:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-06 14:51:34 +0200 |
commit | bb1c1514b5c4e94fd823517d9b94b1b264c99b4c (patch) | |
tree | d3c00740af1692e398bc67ad73963e68ddc4bb48 /CONTRIBUTING.md | |
parent | d680b14ee033da5b7edf2406c35a93583a8f8eed (diff) | |
download | dokka-bb1c1514b5c4e94fd823517d9b94b1b264c99b4c.tar.gz dokka-bb1c1514b5c4e94fd823517d9b94b1b264c99b4c.tar.bz2 dokka-bb1c1514b5c4e94fd823517d9b94b1b264c99b4c.zip |
Update Dokka's references to 1.8.20 (#3028)
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r-- | CONTRIBUTING.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index dff9cb21..cc618be4 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -23,9 +23,9 @@ Bug reports, feature requests and questions are welcome. Submit issues [here](ht ## Submitting PRs -Dokka has extensive [Developer Guides](https://kotlin.github.io/dokka/1.8.10/developer_guide/introduction/) documentation -which goes over the development [Workflow](https://kotlin.github.io/dokka/1.8.10/developer_guide/workflow/) and -[Dokka's architecture](https://kotlin.github.io/dokka/1.8.10/developer_guide/architecture/architecture_overview/), +Dokka has extensive [Developer Guides](https://kotlin.github.io/dokka/1.8.20/developer_guide/introduction/) documentation +which goes over the development [Workflow](https://kotlin.github.io/dokka/1.8.20/developer_guide/workflow/) and +[Dokka's architecture](https://kotlin.github.io/dokka/1.8.20/developer_guide/architecture/architecture_overview/), which can help you understand how to achieve what you want and where to look. All development (both new features and bugfixes) takes place in the `master` branch, it contains sources for the next @@ -61,10 +61,10 @@ Unit tests which are run as part of `build` should not take much time, but you c ### Use/test locally built Dokka Below you will find a bare-bones instruction on how to use and test locally built Dokka. For more details and examples, -visit [Workflow](https://kotlin.github.io/dokka/1.8.10/developer_guide/workflow/) topic. +visit [Workflow](https://kotlin.github.io/dokka/1.8.20/developer_guide/workflow/) topic. 1. Change `dokka_version` in `gradle.properties` to something that you will use later on as the dependency version. - For instance, you can set it to something like `1.8.10-my-fix-SNAPSHOT`. + For instance, you can set it to something like `1.8.20-my-fix-SNAPSHOT`. 2. Publish it to Maven Local (`./gradlew publishToMavenLocal`) 3. In the project for which you want to generate documentation add Maven Local as a buildscript/dependency repository (`mavenLocal()`) @@ -72,7 +72,7 @@ visit [Workflow](https://kotlin.github.io/dokka/1.8.10/developer_guide/workflow/ ```kotlin plugins { - id("org.jetbrains.dokka") version "1.8.10-my-fix-SNAPSHOT" + id("org.jetbrains.dokka") version "1.8.20-my-fix-SNAPSHOT" } ``` |