aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormvicsokolova <maria.sokolova@jetbrains.com>2022-04-14 15:34:49 +0300
committermvicsokolova <maria.sokolova@jetbrains.com>2022-04-14 15:34:49 +0300
commit450b056efa4c8e4f922f2a3f8d1958404513b1f7 (patch)
treeab73ee5758710e60a74c24bd2580e04b33d71aa4
parent07659cfe7771330e14fc3247d972fa3805354a84 (diff)
downloadkotlinx.atomicfu-450b056efa4c8e4f922f2a3f8d1958404513b1f7.tar.gz
Version 0.17.2
-rw-r--r--CHANGES.md7
-rw-r--r--README.md10
-rw-r--r--gradle.properties2
3 files changed, 13 insertions, 6 deletions
diff --git a/CHANGES.md b/CHANGES.md
index acb51de..2864b1c 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,5 +1,12 @@
# Change log for kotlinx.atomicfu
+# Version 0.17.2
+
+* Update Kotlin to 1.6.20.
+* IR transformation for Kotlin/JS. (#215).
+* Update ASM to 9.3 for Java 18 support (#223)
+* Update kotlinx.metadata to 0.4.2.
+
# Version 0.17.1
* Support of `org.jetbrains.kotlin.js` plugin (#218).
diff --git a/README.md b/README.md
index 9944900..d7e8006 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
[![JetBrains incubator project](https://jb.gg/badges/incubator.svg)](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub)
[![GitHub license](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](https://www.apache.org/licenses/LICENSE-2.0)
-[![Maven Central](https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/atomicfu)](https://search.maven.org/artifact/org.jetbrains.kotlinx/atomicfu/0.17.1/pom)
+[![Maven Central](https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/atomicfu)](https://search.maven.org/artifact/org.jetbrains.kotlinx/atomicfu/0.17.2/pom)
The idiomatic way to use atomic operations in Kotlin.
@@ -107,7 +107,7 @@ See [additional configuration](#additional-configuration) if that needs tweaking
```groovy
buildscript {
- ext.atomicfu_version = '0.17.1'
+ ext.atomicfu_version = '0.17.2'
dependencies {
classpath "org.jetbrains.kotlinx:atomicfu-gradle-plugin:$atomicfu_version"
@@ -166,7 +166,7 @@ To set configuration options you should create `atomicfu` section in a `build.gr
like this:
```groovy
atomicfu {
- dependenciesVersion = '0.17.1'
+ dependenciesVersion = '0.17.2'
}
```
@@ -188,7 +188,7 @@ To turn off transformation for Kotlin/JS set option `transformJs` to `false`.
Here are all available configuration options (with their defaults):
```groovy
atomicfu {
- dependenciesVersion = '0.17.1' // set to null to turn-off auto dependencies
+ dependenciesVersion = '0.17.2' // set to null to turn-off auto dependencies
transformJvm = true // set to false to turn off JVM transformation
jvmVariant = "FU" // JVM transformation variant: FU,VH, or BOTH
jsVariant = "JS" // JS transformation variant: JS or IR
@@ -202,7 +202,7 @@ Declare AtomicFU version:
```xml
<properties>
- <atomicfu.version>0.17.1</atomicfu.version>
+ <atomicfu.version>0.17.2</atomicfu.version>
</properties>
```
diff --git a/gradle.properties b/gradle.properties
index a039835..b0eb1d1 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.17.1-SNAPSHOT
+version=0.17.2-SNAPSHOT
group=org.jetbrains.kotlinx
kotlin_version=1.6.20