2
2
3
3
[ ![ JetBrains incubator project] ( https://jb.gg/badges/incubator.svg )] ( https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub )
4
4
[ ![ GitHub license] ( https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat )] ( https://www.apache.org/licenses/LICENSE-2.0 )
5
- [ ![ 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 )
5
+ [ ![ 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 )
6
6
7
7
The idiomatic way to use atomic operations in Kotlin.
8
8
@@ -107,7 +107,7 @@ See [additional configuration](#additional-configuration) if that needs tweaking
107
107
108
108
``` groovy
109
109
buildscript {
110
- ext.atomicfu_version = '0.17.1 '
110
+ ext.atomicfu_version = '0.17.2 '
111
111
112
112
dependencies {
113
113
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
166
166
like this:
167
167
``` groovy
168
168
atomicfu {
169
- dependenciesVersion = '0.17.1 '
169
+ dependenciesVersion = '0.17.2 '
170
170
}
171
171
```
172
172
@@ -188,7 +188,7 @@ To turn off transformation for Kotlin/JS set option `transformJs` to `false`.
188
188
Here are all available configuration options (with their defaults):
189
189
``` groovy
190
190
atomicfu {
191
- dependenciesVersion = '0.17.1 ' // set to null to turn-off auto dependencies
191
+ dependenciesVersion = '0.17.2 ' // set to null to turn-off auto dependencies
192
192
transformJvm = true // set to false to turn off JVM transformation
193
193
jvmVariant = "FU" // JVM transformation variant: FU,VH, or BOTH
194
194
jsVariant = "JS" // JS transformation variant: JS or IR
@@ -202,7 +202,7 @@ Declare AtomicFU version:
202
202
203
203
``` xml
204
204
<properties >
205
- <atomicfu .version>0.17.1 </atomicfu .version>
205
+ <atomicfu .version>0.17.2 </atomicfu .version>
206
206
</properties >
207
207
```
208
208
0 commit comments