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.18.4 /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.5 /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.18.4 " )
114
+ classpath(" org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.18.5 " )
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.18.4 '
131
+ classpath 'org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.18.5 '
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.18.4 </atomicfu .version>
149
+ <atomicfu .version>0.18.5 </atomicfu .version>
150
150
</properties >
151
151
```
152
152
@@ -289,7 +289,7 @@ To set configuration options you should create `atomicfu` section in a `build.gr
289
289
like this:
290
290
``` groovy
291
291
atomicfu {
292
- dependenciesVersion = '0.18.4 '
292
+ dependenciesVersion = '0.18.5 '
293
293
}
294
294
```
295
295
@@ -311,7 +311,7 @@ To turn off transformation for Kotlin/JS set option `transformJs` to `false`.
311
311
Here are all available configuration options (with their defaults):
312
312
``` groovy
313
313
atomicfu {
314
- dependenciesVersion = '0.18.4 ' // set to null to turn-off auto dependencies
314
+ dependenciesVersion = '0.18.5 ' // set to null to turn-off auto dependencies
315
315
transformJvm = true // set to false to turn off JVM transformation
316
316
jvmVariant = "FU" // JVM transformation variant: FU,VH, or BOTH
317
317
transformJs = true // set to false to turn off JVM transformation
0 commit comments