Skip to content

Commit 450b056

Browse files
committed
Version 0.17.2
1 parent 07659cf commit 450b056

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed

CHANGES.md

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

3+
# Version 0.17.2
4+
5+
* Update Kotlin to 1.6.20.
6+
* IR transformation for Kotlin/JS. (#215).
7+
* Update ASM to 9.3 for Java 18 support (#223)
8+
* Update kotlinx.metadata to 0.4.2.
9+
310
# Version 0.17.1
411

512
* Support of `org.jetbrains.kotlin.js` plugin (#218).

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![JetBrains incubator project](https://jb.gg/badges/incubator.svg)](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub)
44
[![GitHub license](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](https://www.apache.org/licenses/LICENSE-2.0)
5-
[![Maven Central](https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/atomicfu)](https://search.maven.org/artifact/org.jetbrains.kotlinx/atomicfu/0.17.1/pom)
5+
[![Maven Central](https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/atomicfu)](https://search.maven.org/artifact/org.jetbrains.kotlinx/atomicfu/0.17.2/pom)
66

77
The idiomatic way to use atomic operations in Kotlin.
88

@@ -107,7 +107,7 @@ See [additional configuration](#additional-configuration) if that needs tweaking
107107

108108
```groovy
109109
buildscript {
110-
ext.atomicfu_version = '0.17.1'
110+
ext.atomicfu_version = '0.17.2'
111111
112112
dependencies {
113113
classpath "org.jetbrains.kotlinx:atomicfu-gradle-plugin:$atomicfu_version"
@@ -166,7 +166,7 @@ To set configuration options you should create `atomicfu` section in a `build.gr
166166
like this:
167167
```groovy
168168
atomicfu {
169-
dependenciesVersion = '0.17.1'
169+
dependenciesVersion = '0.17.2'
170170
}
171171
```
172172

@@ -188,7 +188,7 @@ To turn off transformation for Kotlin/JS set option `transformJs` to `false`.
188188
Here are all available configuration options (with their defaults):
189189
```groovy
190190
atomicfu {
191-
dependenciesVersion = '0.17.1' // set to null to turn-off auto dependencies
191+
dependenciesVersion = '0.17.2' // set to null to turn-off auto dependencies
192192
transformJvm = true // set to false to turn off JVM transformation
193193
jvmVariant = "FU" // JVM transformation variant: FU,VH, or BOTH
194194
jsVariant = "JS" // JS transformation variant: JS or IR
@@ -202,7 +202,7 @@ Declare AtomicFU version:
202202

203203
```xml
204204
<properties>
205-
<atomicfu.version>0.17.1</atomicfu.version>
205+
<atomicfu.version>0.17.2</atomicfu.version>
206206
</properties>
207207
```
208208

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

88
kotlin_version=1.6.20

0 commit comments

Comments
 (0)