diff --git a/CHANGES.md b/CHANGES.md index 713adfff..28824c4e 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,12 @@ # Change log for kotlinx.atomicfu +## Version 0.11.2 + +* Kotlin version 1.2.61 +* Kotlin/Native version 0.8.2 +* More user-friendly Gradle plugin for Kotlin/JVM and multi-release jar by default. See updated section in [README.md](README.md#Gradle) +* Supports `internal` atomic variables that are accessed from a different package in the same module. + ## Version 0.11.1 * Kotlin version 1.2.60 diff --git a/README.md b/README.md index 63f242e6..7fcf5cab 100644 --- a/README.md +++ b/README.md @@ -96,7 +96,7 @@ Declare AtomicFU version: ```xml - 0.11.1 + 0.11.2 ``` @@ -167,7 +167,7 @@ Add and apply AtomicFU plugin: ```groovy buildscript { - ext.atomicfu_version = '0.11.1' + ext.atomicfu_version = '0.11.2' dependencies { classpath "org.jetbrains.kotlinx:atomicfu-gradle-plugin:$atomicfu_version" @@ -245,7 +245,7 @@ repositories { } dependencies { - implementation 'org.jetbrains.kotlinx:atomicfu-native:0.11.1' + implementation 'org.jetbrains.kotlinx:atomicfu-native:0.11.2' } sourceSets { diff --git a/gradle.properties b/gradle.properties index ae2b39cc..28e0e977 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -version = 0.11.1-SNAPSHOT +version = 0.11.2-SNAPSHOT group = org.jetbrains.kotlinx kotlin_version = 1.2.61