33[ ![ Kotlin Beta] ( https://kotl.in/badges/beta.svg )] ( https://kotlinlang.org/docs/components-stability.html )
44[ ![ JetBrains official project] ( https://jb.gg/badges/official.svg )] ( https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub )
55[ ![ 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.24 .0/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.25 .0/pom )
77
88> Note on Beta status: the plugin is in its active development phase and changes from release to release.
99> We do provide a compatibility of atomicfu-transformed artifacts between releases, but we do not provide
@@ -149,7 +149,7 @@ buildscript {
149149 }
150150
151151 dependencies {
152- classpath(" org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.24 .0" )
152+ classpath(" org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.25 .0" )
153153 }
154154}
155155
@@ -166,7 +166,7 @@ buildscript {
166166 mavenCentral()
167167 }
168168 dependencies {
169- classpath 'org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.24 .0'
169+ classpath 'org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.25 .0'
170170 }
171171}
172172
@@ -184,7 +184,7 @@ Maven configuration is supported for JVM projects.
184184
185185``` xml
186186<properties >
187- <atomicfu .version>0.24 .0</atomicfu .version>
187+ <atomicfu .version>0.25 .0</atomicfu .version>
188188</properties >
189189```
190190
@@ -288,7 +288,7 @@ IR for all the target backends:
288288
289289To turn on IR transformations set the following properties in your ` gradle.properties ` file:
290290
291- > Please note, that starting from version ` 0.24 .0 ` of the library your project is required to use ` Kotlin version >= 1.9.0 ` .
291+ > Please note, that starting from version ` 0.25 .0 ` of the library your project is required to use ` Kotlin version >= 1.9.0 ` .
292292> See the [ requirements section] ( #Requirements ) .
293293
294294``` groovy
@@ -331,7 +331,7 @@ To set configuration options you should create `atomicfu` section in a `build.gr
331331like this:
332332``` groovy
333333atomicfu {
334- dependenciesVersion = '0.24 .0'
334+ dependenciesVersion = '0.25 .0'
335335}
336336```
337337
@@ -353,7 +353,7 @@ To turn off transformation for Kotlin/JS set option `transformJs` to `false`.
353353Here are all available configuration options (with their defaults):
354354``` groovy
355355atomicfu {
356- dependenciesVersion = '0.24 .0' // set to null to turn-off auto dependencies
356+ dependenciesVersion = '0.25 .0' // set to null to turn-off auto dependencies
357357 transformJvm = true // set to false to turn off JVM transformation
358358 jvmVariant = "FU" // JVM transformation variant: FU,VH, or BOTH
359359 transformJs = true // set to false to turn off JVM transformation
0 commit comments