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.22 .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.23 .0/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
34
34
35
35
## Requirements
36
36
37
- Starting from version ` 0.22 .0 ` of the library your project is required to use:
37
+ Starting from version ` 0.23 .0 ` of the library your project is required to use:
38
38
39
39
* Gradle ` 7.0 ` or newer
40
40
@@ -119,7 +119,7 @@ buildscript {
119
119
}
120
120
121
121
dependencies {
122
- classpath(" org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.22 .0" )
122
+ classpath(" org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.23 .0" )
123
123
}
124
124
}
125
125
@@ -136,7 +136,7 @@ buildscript {
136
136
mavenCentral()
137
137
}
138
138
dependencies {
139
- classpath 'org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.22 .0'
139
+ classpath 'org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.23 .0'
140
140
}
141
141
}
142
142
@@ -154,7 +154,7 @@ Maven configuration is supported for JVM projects.
154
154
155
155
``` xml
156
156
<properties >
157
- <atomicfu .version>0.22 .0</atomicfu .version>
157
+ <atomicfu .version>0.23 .0</atomicfu .version>
158
158
</properties >
159
159
```
160
160
@@ -295,7 +295,7 @@ To set configuration options you should create `atomicfu` section in a `build.gr
295
295
like this:
296
296
``` groovy
297
297
atomicfu {
298
- dependenciesVersion = '0.22 .0'
298
+ dependenciesVersion = '0.23 .0'
299
299
}
300
300
```
301
301
@@ -317,7 +317,7 @@ To turn off transformation for Kotlin/JS set option `transformJs` to `false`.
317
317
Here are all available configuration options (with their defaults):
318
318
``` groovy
319
319
atomicfu {
320
- dependenciesVersion = '0.22 .0' // set to null to turn-off auto dependencies
320
+ dependenciesVersion = '0.23 .0' // set to null to turn-off auto dependencies
321
321
transformJvm = true // set to false to turn off JVM transformation
322
322
jvmVariant = "FU" // JVM transformation variant: FU,VH, or BOTH
323
323
transformJs = true // set to false to turn off JVM transformation
0 commit comments