From 77eda860aae0118453a5d3f59abad16ae338a496 Mon Sep 17 00:00:00 2001 From: SokolovaMaria Date: Thu, 3 Dec 2020 17:39:38 +0300 Subject: [PATCH] Version 0.15.0 --- CHANGES.md | 8 ++++++++ README.md | 6 +++--- gradle.properties | 2 +- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index fe0edc40..7b3d58c5 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,13 @@ # Change log for kotlinx.atomicfu +# Version 0.15.0 + +* Tracing atomic operations (#20). +* Supported delegated properties (#83). +* Fixed visibility modifiers of synthetic fields and classes (#144). +* Introduced `size` method for atomic arrays (#149). +* Update Kotlin to 1.4.10. + # Version 0.14.4 * Fixed bug when Maven plugin wasn't published diff --git a/README.md b/README.md index 792cf88b..a32721b5 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.14.3' + ext.atomicfu_version = '0.15.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.14.3' // set to null to turn-off auto dependencies + dependenciesVersion = '0.15.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.14.3 + 0.15.0 ``` diff --git a/gradle.properties b/gradle.properties index 5f04c0e4..072f634c 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.14.4-SNAPSHOT +version=0.15.0-SNAPSHOT group=org.jetbrains.kotlinx kotlin_version=1.4.10