diff --git a/CHANGES.md b/CHANGES.md index 91a23b9..d0db9d0 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,12 @@ # Change log for kotlinx-knit +## Version 0.2.2 + +* Warn on markdown reference case conflicts (#20). +* Support consistent function disambiguation using `name()` syntax and additional `_name` prefix for names with + the lowercase first letters. This way, you can refer to `CoroutineScope` class, `CoroutineScope()` function, + and `_coroutineScope` function from the same file without ambiguities. + ## Version 0.2.1 * Support new Dokka (1.4.0+) links format diff --git a/README.md b/README.md index 41c3d1a..299ed0f 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ Add it to the `build.gradle` in the following way: ```groovy buildscript { dependencies { - classpath "org.jetbrains.kotlinx:kotlinx-knit:0.2.0" + classpath "org.jetbrains.kotlinx:kotlinx-knit:0.2.2" } } diff --git a/gradle.properties b/gradle.properties index b34fec0..65c29fd 100644 --- a/gradle.properties +++ b/gradle.properties @@ -2,7 +2,7 @@ # Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. # -version=0.2.1-SNAPSHOT +version=0.2.2-SNAPSHOT group=org.jetbrains.kotlinx kotlinVersion=1.3.70