diff --git a/CHANGES.md b/CHANGES.md index f9ab643c..50932c92 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,13 @@ # Change log for kotlinx.atomicfu +# Version 0.13.0 + +* Gradle version 5.6.1 with Gradle metadata format version 1.0 (stable) for native modules. +* Optimized volatile-only fields in JVM. +* Supported unchecked cast erasure (including array elements). +* Fixed inline functions on array elements. +* Fixed shutdown sequence of LockFreedomTestEnvironment. + # Version 0.12.11 * Support suspending functions in LockFreedomTestEnvironment. diff --git a/README.md b/README.md index 28424c18..d28d0f61 100644 --- a/README.md +++ b/README.md @@ -107,7 +107,7 @@ See [additional configuration](#additional-configuration) if that needs tweaking ```groovy buildscript { - ext.atomicfu_version = '0.12.11' + ext.atomicfu_version = '0.13.0' dependencies { classpath "org.jetbrains.kotlinx:atomicfu-gradle-plugin:$atomicfu_version" @@ -155,7 +155,7 @@ There are the following additional parameters (with their defaults): ```groovy atomicfu { - dependenciesVersion = '0.12.11' // set to null to turn-off auto dependencies + dependenciesVersion = '0.13.0' // set to null to turn-off auto dependencies transformJvm = true // set to false to turn off JVM transformation transformJs = true // set to false to turn off JS transformation variant = "FU" // JVM transformation variant: FU,VH, or BOTH @@ -169,7 +169,7 @@ Declare AtomicFU version: ```xml - 0.12.11 + 0.13.0 ``` diff --git a/gradle.properties b/gradle.properties index d6f5feef..9693b6fe 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -version = 0.12.11-SNAPSHOT +version = 0.13.0-SNAPSHOT group = org.jetbrains.kotlinx kotlin_version=1.3.50 @@ -15,4 +15,6 @@ mocha_version=4.1.0 mocha_headless_chrome_version=1.8.2 mocha_teamcity_reporter_version=2.2.2 source_map_support_version=0.5.3 -kotlin.incremental.multiplatform=true \ No newline at end of file + +kotlin.incremental.multiplatform=true +kotlin.native.ignoreDisabledTargets=true \ No newline at end of file