Skip to content

Commit 0cc46d6

Browse files
committed
Version 0.18.4
1 parent ea661bc commit 0cc46d6

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
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.18.4
4+
5+
* Fix KGP compatibility bug with freeCompilerArgs modification (#247).
6+
* Update kotlinx.metadata to 0.5.0 (#245).
7+
* Update gradle version to 6.8.3 (#244)
8+
39
# Version 0.18.3
410

511
* Fix for atomicfu-gradle-plugin application to the MPP project (for Kotlin 1.7.20).

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.18.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.4/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
@@ -110,7 +110,7 @@ See [additional configuration](#additional-configuration) if that needs tweaking
110110

111111
```groovy
112112
buildscript {
113-
ext.atomicfu_version = '0.18.3'
113+
ext.atomicfu_version = '0.18.4'
114114
115115
dependencies {
116116
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.18.3'
170+
dependenciesVersion = '0.18.4'
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.18.3' // set to null to turn-off auto dependencies
192+
dependenciesVersion = '0.18.4' // 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.18.3</atomicfu.version>
206+
<atomicfu.version>0.18.4</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.18.3-SNAPSHOT
5+
version=0.18.4-SNAPSHOT
66
group=org.jetbrains.kotlinx
77

88
kotlin_version=1.7.0

0 commit comments

Comments
 (0)