diff --git a/CHANGES.md b/CHANGES.md index 20e43b3a..7b6cb5e6 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,10 @@ # Change log for kotlinx.atomicfu +# Version 0.20.2 + +* Fix for unresolved `kotlinx-atomicfu-runtime` dependency error (https://youtrack.jetbrains.com/issue/KT-57235), +please see the corresponding PR for more comments (#290). + # Version 0.20.1 * Fixed passing `kotlinx-atomicfu-runtime` dependency to the runtime classpath (#283). diff --git a/README.md b/README.md index 0018ce0d..aa71758e 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![Kotlin Beta](https://kotl.in/badges/beta.svg)](https://kotlinlang.org/docs/components-stability.html) [![JetBrains official project](https://jb.gg/badges/official.svg)](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub) [![GitHub license](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](https://www.apache.org/licenses/LICENSE-2.0) -[![Maven Central](https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/atomicfu)](https://search.maven.org/artifact/org.jetbrains.kotlinx/atomicfu/0.20.1/pom) +[![Maven Central](https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/atomicfu)](https://search.maven.org/artifact/org.jetbrains.kotlinx/atomicfu/0.20.2/pom) >Note on Beta status: the plugin is in its active development phase and changes from release to release. >We do provide a compatibility of atomicfu-transformed artifacts between releases, but we do not provide @@ -111,7 +111,7 @@ buildscript { } dependencies { - classpath("org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.20.1") + classpath("org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.20.2") } } @@ -128,7 +128,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.20.1' + classpath 'org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.20.2' } } @@ -146,7 +146,7 @@ Maven configuration is supported for JVM projects. ```xml - 0.20.1 + 0.20.2 ``` @@ -290,7 +290,7 @@ To set configuration options you should create `atomicfu` section in a `build.gr like this: ```groovy atomicfu { - dependenciesVersion = '0.20.1' + dependenciesVersion = '0.20.2' } ``` @@ -312,7 +312,7 @@ To turn off transformation for Kotlin/JS set option `transformJs` to `false`. Here are all available configuration options (with their defaults): ```groovy atomicfu { - dependenciesVersion = '0.20.1' // set to null to turn-off auto dependencies + dependenciesVersion = '0.20.2' // set to null to turn-off auto dependencies transformJvm = true // set to false to turn off JVM transformation jvmVariant = "FU" // JVM transformation variant: FU,VH, or BOTH transformJs = true // set to false to turn off JVM transformation diff --git a/gradle.properties b/gradle.properties index 950e40ec..1958f109 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.20.1-SNAPSHOT +version=0.20.2-SNAPSHOT group=org.jetbrains.kotlinx kotlin_version=1.8.10