aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormvicsokolova <maria.sokolova@jetbrains.com>2022-02-07 16:36:05 +0300
committermvicsokolova <maria.sokolova@jetbrains.com>2022-02-07 16:36:05 +0300
commita4b7257392995710b9b7268151e63d0d022fbc10 (patch)
treefc7ad95855f135bca068de71f4e1cb5d2c5ce967
parentdcf8566fb1b5a89b3dad5d9d0fdb887aed123c1b (diff)
downloadkotlinx.atomicfu-a4b7257392995710b9b7268151e63d0d022fbc10.tar.gz
Version 0.17.1
-rw-r--r--CHANGES.md6
-rw-r--r--README.md8
-rw-r--r--gradle.properties2
3 files changed, 11 insertions, 5 deletions
diff --git a/CHANGES.md b/CHANGES.md
index ced0c22..acb51de 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,5 +1,11 @@
# Change log for kotlinx.atomicfu
+# Version 0.17.1
+
+* Support of `org.jetbrains.kotlin.js` plugin (#218).
+* Fixed configuration cache bug. (#216).
+* Bug fixes for delegated fields support (#179).
+
# Version 0.17.0
* Update Kotlin to 1.6.0.
diff --git a/README.md b/README.md
index 70c03d3..665036b 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.0/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.1/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.0'
+ ext.atomicfu_version = '0.17.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.17.0' // set to null to turn-off auto dependencies
+ dependenciesVersion = '0.17.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
<properties>
- <atomicfu.version>0.17.0</atomicfu.version>
+ <atomicfu.version>0.17.1</atomicfu.version>
</properties>
```
diff --git a/gradle.properties b/gradle.properties
index 8b0fca2..f4df647 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.0-SNAPSHOT
+version=0.17.1-SNAPSHOT
group=org.jetbrains.kotlinx
kotlin_version=1.6.0