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.18.5 /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.19.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 
@@ -111,7 +111,7 @@ buildscript {
111111    }
112112
113113    dependencies {
114-       classpath(" org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.18.5 " 
114+       classpath(" org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.19.0 " 
115115    }
116116}
117117
@@ -128,7 +128,7 @@ buildscript {
128128        mavenCentral() 
129129    } 
130130    dependencies { 
131-         classpath 'org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.18.5 ' 
131+         classpath 'org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.19.0 ' 
132132    } 
133133} 
134134   
@@ -146,7 +146,7 @@ Maven configuration is supported for JVM projects.
146146
147147``` xml 
148148<properties >
149-      <atomicfu .version>0.18.5 </atomicfu .version>
149+      <atomicfu .version>0.19.0 </atomicfu .version>
150150</properties > 
151151``` 
152152
@@ -290,7 +290,7 @@ To set configuration options you should create `atomicfu` section in a `build.gr
290290like this:
291291``` groovy 
292292atomicfu { 
293-   dependenciesVersion = '0.18.5 ' 
293+   dependenciesVersion = '0.19.0 ' 
294294} 
295295``` 
296296
@@ -312,7 +312,7 @@ To turn off transformation for Kotlin/JS set option `transformJs` to `false`.
312312Here are all available configuration options (with their defaults):
313313``` groovy 
314314atomicfu { 
315-   dependenciesVersion = '0.18.5 ' // set to null to turn-off auto dependencies 
315+   dependenciesVersion = '0.19.0 ' // set to null to turn-off auto dependencies 
316316  transformJvm = true // set to false to turn off JVM transformation 
317317  jvmVariant = "FU" // JVM transformation variant: FU,VH, or BOTH 
318318  transformJs = true // set to false to turn off JVM transformation 
0 commit comments