From 80fe08c40eff429e02730aa36690366b47369c83 Mon Sep 17 00:00:00 2001 From: mvicsokolova Date: Tue, 6 Jul 2021 17:28:39 +0300 Subject: [PATCH] Version 0.16.2 --- 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 1ad88368..097b5a2f 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,11 @@ # Change log for kotlinx.atomicfu +# Version 0.16.2 + +* Update Kotlin to 1.5.20. +* ASM 9.1 for Java 15+ support (#190). +* Removing extra atomicfu references from LVT. + # Version 0.16.0 * Update Kotlin to 1.5.0. diff --git a/README.md b/README.md index 3f86a273..88d912b5 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.16.0' + ext.atomicfu_version = '0.16.2' 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.16.0' // set to null to turn-off auto dependencies + dependenciesVersion = '0.16.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 @@ -169,7 +169,7 @@ Declare AtomicFU version: ```xml - 0.16.0 + 0.16.2 ``` diff --git a/gradle.properties b/gradle.properties index bb48b664..10f7bf0d 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.16.0-SNAPSHOT +version=0.16.2-SNAPSHOT group=org.jetbrains.kotlinx kotlin_version=1.5.20