From 5ed01f453286cceca224b191f9e36e362b9c8f5c Mon Sep 17 00:00:00 2001 From: SokolovaMaria Date: Wed, 30 Dec 2020 10:37:27 +0300 Subject: [PATCH] Version 0.15.1 --- CHANGES.md | 6 ++++++ README.md | 6 +++--- gradle.properties | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 7b3d58c5..1f9c8e06 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,11 @@ # Change log for kotlinx.atomicfu +# Version 0.15.1 + +* Maven central publication (#173). +* Binary compatibility with IR (#170). +* Supported garbage-free multi-append in debug trace (#172). + # Version 0.15.0 * Tracing atomic operations (#20). diff --git a/README.md b/README.md index a32721b5..5146b3ff 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.15.0' + ext.atomicfu_version = '0.15.1' 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.15.0' // set to null to turn-off auto dependencies + dependenciesVersion = '0.15.1' // 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.15.0 + 0.15.1 ``` diff --git a/gradle.properties b/gradle.properties index 072f634c..6674dcc6 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.15.0-SNAPSHOT +version=0.15.1-SNAPSHOT group=org.jetbrains.kotlinx kotlin_version=1.4.10