aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormvicsokolova <maria.sokolova@jetbrains.com>2022-05-30 14:54:04 +0300
committermvicsokolova <maria.sokolova@jetbrains.com>2022-05-30 14:54:04 +0300
commit9f8dcb1a55873807022af032b0c8627148033cc7 (patch)
tree52cebf07ab2129371093b1f7ddebe3c607ae2143
parente03ff4d9c8ef074d824c2901e000c8d08dce685b (diff)
downloadkotlinx.atomicfu-9f8dcb1a55873807022af032b0c8627148033cc7.tar.gz
Version 0.17.3
-rw-r--r--CHANGES.md6
-rw-r--r--README.md10
-rw-r--r--gradle.properties2
3 files changed, 12 insertions, 6 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 2864b1c..907197d 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,5 +1,11 @@
# Change log for kotlinx.atomicfu
+# Version 0.17.3
+
+* Adding compiler plugin dependency only for projects with KGP >= 1.6.20 (#226).
+* Compiler plugin runtime dependency fixes (#230).
+* Update README badges (#228).
+
# Version 0.17.2
* Update Kotlin to 1.6.20.
diff --git a/README.md b/README.md
index 3b4cdb5..8ddded4 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@
[![Kotlin Beta](https://kotl.in/badges/beta.svg)](https://kotlinlang.org/docs/components-stability.html)
[![JetBrains official project](https://jb.gg/badges/official.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.2/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.3/pom)
The idiomatic way to use atomic operations in Kotlin.
@@ -108,7 +108,7 @@ See [additional configuration](#additional-configuration) if that needs tweaking
```groovy
buildscript {
- ext.atomicfu_version = '0.17.2'
+ ext.atomicfu_version = '0.17.3'
dependencies {
classpath "org.jetbrains.kotlinx:atomicfu-gradle-plugin:$atomicfu_version"
@@ -167,7 +167,7 @@ To set configuration options you should create `atomicfu` section in a `build.gr
like this:
```groovy
atomicfu {
- dependenciesVersion = '0.17.2'
+ dependenciesVersion = '0.17.3'
}
```
@@ -189,7 +189,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.2' // set to null to turn-off auto dependencies
+ dependenciesVersion = '0.17.3' // 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
@@ -203,7 +203,7 @@ Declare AtomicFU version:
```xml
<properties>
- <atomicfu.version>0.17.2</atomicfu.version>
+ <atomicfu.version>0.17.3</atomicfu.version>
</properties>
```
diff --git a/gradle.properties b/gradle.properties
index b0eb1d1..286914c 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.2-SNAPSHOT
+version=0.17.3-SNAPSHOT
group=org.jetbrains.kotlinx
kotlin_version=1.6.20