Skip to content

Commit bfdd8a7

Browse files
committed
Version 0.20.1
1 parent 5ddfa4e commit bfdd8a7

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change log for kotlinx.atomicfu
22

3+
# Version 0.20.1
4+
5+
* Fixed passing `kotlinx-atomicfu-runtime` dependency to the runtime classpath (#283).
6+
* AV/LV set to 1.4 to be compatible with Gradle 7 (#287).
7+
* Enable cinterop commonization (#282).
8+
39
# Version 0.20.0
410

511
* Update Kotlin to 1.8.10.

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
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.20.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.20.1/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.20.0")
114+
classpath("org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.20.1")
115115
}
116116
}
117117

@@ -128,7 +128,7 @@ buildscript {
128128
mavenCentral()
129129
}
130130
dependencies {
131-
classpath 'org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.20.0'
131+
classpath 'org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.20.1'
132132
}
133133
}
134134
@@ -146,7 +146,7 @@ Maven configuration is supported for JVM projects.
146146

147147
```xml
148148
<properties>
149-
<atomicfu.version>0.20.0</atomicfu.version>
149+
<atomicfu.version>0.20.1</atomicfu.version>
150150
</properties>
151151
```
152152

@@ -290,7 +290,7 @@ To set configuration options you should create `atomicfu` section in a `build.gr
290290
like this:
291291
```groovy
292292
atomicfu {
293-
dependenciesVersion = '0.20.0'
293+
dependenciesVersion = '0.20.1'
294294
}
295295
```
296296

@@ -312,7 +312,7 @@ To turn off transformation for Kotlin/JS set option `transformJs` to `false`.
312312
Here are all available configuration options (with their defaults):
313313
```groovy
314314
atomicfu {
315-
dependenciesVersion = '0.20.0' // set to null to turn-off auto dependencies
315+
dependenciesVersion = '0.20.1' // 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

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
33
#
44

5-
version=0.20.0-SNAPSHOT
5+
version=0.20.1-SNAPSHOT
66
group=org.jetbrains.kotlinx
77

88
kotlin_version=1.8.10

0 commit comments

Comments
 (0)