diff --git a/CHANGELOG.md b/CHANGELOG.md index 5580acc..9d25b33 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ Changelog === +Version 26.0.2 +--- +* Fixed missing klibs for apple artifacts. + Version 26.0.1 --- * Fixed sources.jar build (regression after 25.0.0) diff --git a/README.md b/README.md index 50317ac..bb5eb45 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ using gradle write the following in the `build.gradle` file (Groovy DSL) ``` dependencies { - compileOnly 'org.jetbrains:annotations:26.0.1' + compileOnly 'org.jetbrains:annotations:26.0.2' } ``` @@ -25,7 +25,7 @@ dependencies { or in the `build.gradle.kts` file (Kotlin DSL) ``` dependencies { - compileOnly("org.jetbrains:annotations:26.0.1") + compileOnly("org.jetbrains:annotations:26.0.2") } ``` @@ -34,7 +34,7 @@ To add a dependency using Maven, write the following in `pom.xml`: org.jetbrains annotations - 26.0.1 + 26.0.2 provided ``` diff --git a/gradle.properties b/gradle.properties index ccf5eb4..309be6e 100644 --- a/gradle.properties +++ b/gradle.properties @@ -14,7 +14,7 @@ # limitations under the License. # -projectVersion=26.0.1 +projectVersion=26.0.2 kotlin.code.style=official kotlin.mpp.stability.nowarn=true kotlin.stdlib.default.dependency=false