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