Skip to content

Commit f24c748

Browse files
committed
Version 0.18.0
1 parent b125161 commit f24c748

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.18.0
4+
5+
* Update Kotlin to 1.7.0.
6+
* Fix kotlin 1.7 compatibility (#222).
7+
* Update JVM target to 1.8 (see KT-45165).
8+
* Fix for parsing Kotlin version in AtomicfuGradlePlugin.
9+
310
# Version 0.17.3
411

512
* Adding compiler plugin dependency only for projects with KGP >= 1.6.20 (#226).

README.md

Lines changed: 5 additions & 5 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.17.3/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.18.0/pom)
77

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

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

109109
```groovy
110110
buildscript {
111-
ext.atomicfu_version = '0.17.3'
111+
ext.atomicfu_version = '0.18.0'
112112
113113
dependencies {
114114
classpath "org.jetbrains.kotlinx:atomicfu-gradle-plugin:$atomicfu_version"
@@ -167,7 +167,7 @@ To set configuration options you should create `atomicfu` section in a `build.gr
167167
like this:
168168
```groovy
169169
atomicfu {
170-
dependenciesVersion = '0.17.3'
170+
dependenciesVersion = '0.18.0'
171171
}
172172
```
173173

@@ -189,7 +189,7 @@ To turn off transformation for Kotlin/JS set option `transformJs` to `false`.
189189
Here are all available configuration options (with their defaults):
190190
```groovy
191191
atomicfu {
192-
dependenciesVersion = '0.17.3' // set to null to turn-off auto dependencies
192+
dependenciesVersion = '0.18.0' // set to null to turn-off auto dependencies
193193
transformJvm = true // set to false to turn off JVM transformation
194194
jvmVariant = "FU" // JVM transformation variant: FU,VH, or BOTH
195195
jsVariant = "JS" // JS transformation variant: JS or IR
@@ -203,7 +203,7 @@ Declare AtomicFU version:
203203

204204
```xml
205205
<properties>
206-
<atomicfu.version>0.17.3</atomicfu.version>
206+
<atomicfu.version>0.18.0</atomicfu.version>
207207
</properties>
208208
```
209209

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

88
kotlin_version=1.7.0

0 commit comments

Comments
 (0)