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.20.1 /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.20.2 /pom )
7
7
8
8
> Note on Beta status: the plugin is in its active development phase and changes from release to release.
9
9
> We do provide a compatibility of atomicfu-transformed artifacts between releases, but we do not provide
@@ -111,7 +111,7 @@ buildscript {
111
111
}
112
112
113
113
dependencies {
114
- classpath(" org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.20.1 " )
114
+ classpath(" org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.20.2 " )
115
115
}
116
116
}
117
117
@@ -128,7 +128,7 @@ buildscript {
128
128
mavenCentral()
129
129
}
130
130
dependencies {
131
- classpath 'org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.20.1 '
131
+ classpath 'org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.20.2 '
132
132
}
133
133
}
134
134
@@ -146,7 +146,7 @@ Maven configuration is supported for JVM projects.
146
146
147
147
``` xml
148
148
<properties >
149
- <atomicfu .version>0.20.1 </atomicfu .version>
149
+ <atomicfu .version>0.20.2 </atomicfu .version>
150
150
</properties >
151
151
```
152
152
@@ -290,7 +290,7 @@ To set configuration options you should create `atomicfu` section in a `build.gr
290
290
like this:
291
291
``` groovy
292
292
atomicfu {
293
- dependenciesVersion = '0.20.1 '
293
+ dependenciesVersion = '0.20.2 '
294
294
}
295
295
```
296
296
@@ -312,7 +312,7 @@ To turn off transformation for Kotlin/JS set option `transformJs` to `false`.
312
312
Here are all available configuration options (with their defaults):
313
313
``` groovy
314
314
atomicfu {
315
- dependenciesVersion = '0.20.1 ' // set to null to turn-off auto dependencies
315
+ dependenciesVersion = '0.20.2 ' // set to null to turn-off auto dependencies
316
316
transformJvm = true // set to false to turn off JVM transformation
317
317
jvmVariant = "FU" // JVM transformation variant: FU,VH, or BOTH
318
318
transformJs = true // set to false to turn off JVM transformation
0 commit comments