Skip to content

Commit 456b472

Browse files
committed
Version 0.21.0
1 parent c41d50a commit 456b472

File tree

3 files changed

+16
-7
lines changed

3 files changed

+16
-7
lines changed

CHANGES.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Change log for kotlinx.atomicfu
22

3+
# Version 0.21.0
4+
5+
* Updated Kotlin to 1.8.20.
6+
* Updated Gradle to 7.3 (#300).
7+
* Updated kotlinx.metadata version to 0.6.0 (#281).
8+
* Removed JS Legacy configurations for KGP >= 1.9.0 (#296).
9+
* Fixed class duplication (from original and transformed directories) in Jar (#301).
10+
* Minimal supported KGP(1.7.0) and Gradle(7.0) versions are set since this release.
11+
312
# Version 0.20.2
413

514
* Fix for unresolved `kotlinx-atomicfu-runtime` dependency error (https://youtrack.jetbrains.com/issue/KT-57235),

README.md

+6-6
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.2/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.21.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
@@ -119,7 +119,7 @@ buildscript {
119119
}
120120

121121
dependencies {
122-
classpath("org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.20.2")
122+
classpath("org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.21.0")
123123
}
124124
}
125125

@@ -136,7 +136,7 @@ buildscript {
136136
mavenCentral()
137137
}
138138
dependencies {
139-
classpath 'org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.20.2'
139+
classpath 'org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.21.0'
140140
}
141141
}
142142
@@ -154,7 +154,7 @@ Maven configuration is supported for JVM projects.
154154

155155
```xml
156156
<properties>
157-
<atomicfu.version>0.20.2</atomicfu.version>
157+
<atomicfu.version>0.21.0</atomicfu.version>
158158
</properties>
159159
```
160160

@@ -298,7 +298,7 @@ To set configuration options you should create `atomicfu` section in a `build.gr
298298
like this:
299299
```groovy
300300
atomicfu {
301-
dependenciesVersion = '0.20.2'
301+
dependenciesVersion = '0.21.0'
302302
}
303303
```
304304

@@ -320,7 +320,7 @@ To turn off transformation for Kotlin/JS set option `transformJs` to `false`.
320320
Here are all available configuration options (with their defaults):
321321
```groovy
322322
atomicfu {
323-
dependenciesVersion = '0.20.2' // set to null to turn-off auto dependencies
323+
dependenciesVersion = '0.21.0' // set to null to turn-off auto dependencies
324324
transformJvm = true // set to false to turn off JVM transformation
325325
jvmVariant = "FU" // JVM transformation variant: FU,VH, or BOTH
326326
transformJs = true // set to false to turn off JVM transformation

gradle.properties

+1-1
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.2-SNAPSHOT
5+
version=0.21.0-SNAPSHOT
66
group=org.jetbrains.kotlinx
77

88
kotlin_version=1.8.20

0 commit comments

Comments
 (0)