Skip to content

Commit

Permalink
Update referenced version to 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
IgnatBeresnev committed Jun 20, 2022
1 parent 094f388 commit 56465c1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/src/doc/docs/community/plugins-list.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,6 @@ For instance, `fun foo(bar: Bar): Baz` will be rendered as `public final Baz foo

`Kotlin as Java` plugin is published to maven central as a
[separate artifact](https://mvnrepository.com/artifact/org.jetbrains.dokka/kotlin-as-java-plugin):
`org.jetbrains.dokka:kotlin-as-java-plugin:1.6.21`.
`org.jetbrains.dokka:kotlin-as-java-plugin:1.7.0`.

[Plugin source code on GitHub](https://github.com/Kotlin/dokka/tree/master/plugins/kotlin-as-java)
4 changes: 2 additions & 2 deletions docs/src/doc/docs/developer_guide/workflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Having built Dokka locally, you can publish it to `mavenLocal()`. This will allo
project as well as debug code remotely.

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.6.21-my-fix-SNAPSHOT`. This version will be propagated to plugins
For instance, you can set it to something like `1.7.0-my-fix-SNAPSHOT`. This version will be propagated to plugins
that reside inside Dokka's project (such as `mathjax`, `kotlin-as-java`, etc).
2. Publish it to maven local (`./gradlew publishToMavenLocal`). Corresponding artifacts should appear in `~/.m2`
3. In the project you want to generate documentation for or debug on, add maven local as a plugin/dependency
Expand All @@ -55,7 +55,7 @@ repositories {
4. Update your dokka dependency to the version you've just published:
```kotlin
plugins {
id("org.jetbrains.dokka") version "1.6.21-my-fix-SNAPSHOT"
id("org.jetbrains.dokka") version "1.7.0-my-fix-SNAPSHOT"
}
```

Expand Down
4 changes: 2 additions & 2 deletions examples/plugin/hide-internal-api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import java.net.URI

plugins {
kotlin("jvm") version "1.6.21"
id("org.jetbrains.dokka") version "1.6.21"
kotlin("jvm") version "1.7.0"
id("org.jetbrains.dokka") version "1.7.0"
`maven-publish`
signing
}
Expand Down
2 changes: 1 addition & 1 deletion examples/plugin/hide-internal-api/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
dokkaVersion=1.6.21
dokkaVersion=1.7.0

0 comments on commit 56465c1

Please sign in to comment.