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.26.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.26.1 /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
@@ -112,7 +112,7 @@ operations. They can be also atomically modified via `+=` and `-=` operators.
112
112
### Apply plugin
113
113
#### Gradle configuration
114
114
115
- > ** New plugin id:** Please pay attention, that starting from version ` 0.26.0 ` the plugin id is ` org.jetbrains.kotlinx.atomicfu `
115
+ > ** New plugin id:** Please pay attention, that starting from version ` 0.26.1 ` the plugin id is ` org.jetbrains.kotlinx.atomicfu `
116
116
117
117
Add the following to your top-level build file:
118
118
@@ -121,7 +121,7 @@ Add the following to your top-level build file:
121
121
122
122
``` kotlin
123
123
plugins {
124
- id(" org.jetbrains.kotlinx.atomicfu" ) version " 0.26.0 "
124
+ id(" org.jetbrains.kotlinx.atomicfu" ) version " 0.26.1 "
125
125
}
126
126
```
127
127
</details >
@@ -131,7 +131,7 @@ plugins {
131
131
132
132
``` groovy
133
133
plugins {
134
- id 'org.jetbrains.kotlinx.atomicfu' version '0.26.0 '
134
+ id 'org.jetbrains.kotlinx.atomicfu' version '0.26.1 '
135
135
}
136
136
```
137
137
</details >
@@ -149,7 +149,7 @@ buildscript {
149
149
}
150
150
151
151
dependencies {
152
- classpath(" org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.26.0 " )
152
+ classpath(" org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.26.1 " )
153
153
}
154
154
}
155
155
@@ -166,7 +166,7 @@ buildscript {
166
166
mavenCentral()
167
167
}
168
168
dependencies {
169
- classpath 'org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.26.0 '
169
+ classpath 'org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.26.1 '
170
170
}
171
171
}
172
172
@@ -184,7 +184,7 @@ Maven configuration is supported for JVM projects.
184
184
185
185
``` xml
186
186
<properties >
187
- <atomicfu .version>0.26.0 </atomicfu .version>
187
+ <atomicfu .version>0.26.1 </atomicfu .version>
188
188
</properties >
189
189
```
190
190
@@ -288,7 +288,7 @@ IR for all the target backends:
288
288
289
289
To turn on IR transformations set the following properties in your ` gradle.properties ` file:
290
290
291
- > Please note, that starting from version ` 0.26.0 ` of the library your project is required to use ` Kotlin version >= 1.9.0 ` .
291
+ > Please note, that starting from version ` 0.26.1 ` of the library your project is required to use ` Kotlin version >= 1.9.0 ` .
292
292
> See the [ requirements section] ( #Requirements ) .
293
293
294
294
``` groovy
@@ -331,7 +331,7 @@ To set configuration options you should create `atomicfu` section in a `build.gr
331
331
like this:
332
332
``` groovy
333
333
atomicfu {
334
- dependenciesVersion = '0.26.0 '
334
+ dependenciesVersion = '0.26.1 '
335
335
}
336
336
```
337
337
@@ -348,13 +348,13 @@ Here are the valid options:
348
348
349
349
### JS options
350
350
351
- > Starting with version ` 0.26.0 ` ` transformJs ` flag does not take any effect and is disabled by default.
351
+ > Starting with version ` 0.26.1 ` ` transformJs ` flag does not take any effect and is disabled by default.
352
352
> Please ensure that this flag is not used in the atomicfu configuration of your project, you can safely remove it.
353
353
354
354
Here are all available configuration options (with their defaults):
355
355
``` groovy
356
356
atomicfu {
357
- dependenciesVersion = '0.26.0 ' // set to null to turn-off auto dependencies
357
+ dependenciesVersion = '0.26.1 ' // set to null to turn-off auto dependencies
358
358
transformJvm = true // set to false to turn off JVM transformation
359
359
jvmVariant = "FU" // JVM transformation variant: FU,VH, or BOTH
360
360
}
0 commit comments