From 86f5ed244c0752c1fa49e5146e1e760970a0a20b Mon Sep 17 00:00:00 2001 From: Roman Elizarov Date: Tue, 3 Mar 2020 18:21:17 +0300 Subject: [PATCH] Version 0.14.2 --- CHANGES.md | 4 ++++ README.md | 6 +++--- gradle.properties | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 2f0f08ac..652b8356 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # Change log for kotlinx.atomicfu +# Version 0.14.2 + +* Update to Kotlin 1.3.70. + # Version 0.14.1 * Fixed broken JVM transformer after upgrade to ASM 7.2. diff --git a/README.md b/README.md index cb29ea38..62e79d39 100644 --- a/README.md +++ b/README.md @@ -108,7 +108,7 @@ See [additional configuration](#additional-configuration) if that needs tweaking ```groovy buildscript { - ext.atomicfu_version = '0.14.1' + ext.atomicfu_version = '0.14.2' dependencies { classpath "org.jetbrains.kotlinx:atomicfu-gradle-plugin:$atomicfu_version" @@ -156,7 +156,7 @@ There are the following additional parameters (with their defaults): ```groovy atomicfu { - dependenciesVersion = '0.14.1' // set to null to turn-off auto dependencies + dependenciesVersion = '0.14.2' // 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 @@ -170,7 +170,7 @@ Declare AtomicFU version: ```xml - 0.14.1 + 0.14.2 ``` diff --git a/gradle.properties b/gradle.properties index 57533e6e..12a8e3b6 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -version=0.14.1-SNAPSHOT +version=0.14.2-SNAPSHOT group=org.jetbrains.kotlinx kotlin_version=1.3.70