aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormvicsokolova <maria.sokolova@jetbrains.com>2022-10-07 09:34:02 +0200
committermvicsokolova <maria.sokolova@jetbrains.com>2022-10-07 09:34:02 +0200
commit0cc46d69fe3883c0283640024994289bb2a1a2f4 (patch)
tree16f7c81ad9faeb67ac4aa18a2bca3a431e2592ff
parentea661bc5aecdcd3a0a19c3f1c4faf4f39d4fac08 (diff)
downloadkotlinx.atomicfu-0cc46d69fe3883c0283640024994289bb2a1a2f4.tar.gz
Version 0.18.4
-rw-r--r--CHANGES.md6
-rw-r--r--README.md10
-rw-r--r--gradle.properties2
3 files changed, 12 insertions, 6 deletions
diff --git a/CHANGES.md b/CHANGES.md
index a4df5fd..4225c92 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,5 +1,11 @@
# Change log for kotlinx.atomicfu
+# Version 0.18.4
+
+* Fix KGP compatibility bug with freeCompilerArgs modification (#247).
+* Update kotlinx.metadata to 0.5.0 (#245).
+* Update gradle version to 6.8.3 (#244)
+
# Version 0.18.3
* Fix for atomicfu-gradle-plugin application to the MPP project (for Kotlin 1.7.20).
diff --git a/README.md b/README.md
index b92141e..c34cd44 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@
[![Kotlin Beta](https://kotl.in/badges/beta.svg)](https://kotlinlang.org/docs/components-stability.html)
[![JetBrains official project](https://jb.gg/badges/official.svg)](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub)
[![GitHub license](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](https://www.apache.org/licenses/LICENSE-2.0)
-[![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)
+[![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)
>Note on Beta status: the plugin is in its active development phase and changes from release to release.
>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
```groovy
buildscript {
- ext.atomicfu_version = '0.18.3'
+ ext.atomicfu_version = '0.18.4'
dependencies {
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
like this:
```groovy
atomicfu {
- dependenciesVersion = '0.18.3'
+ dependenciesVersion = '0.18.4'
}
```
@@ -189,7 +189,7 @@ To turn off transformation for Kotlin/JS set option `transformJs` to `false`.
Here are all available configuration options (with their defaults):
```groovy
atomicfu {
- dependenciesVersion = '0.18.3' // set to null to turn-off auto dependencies
+ dependenciesVersion = '0.18.4' // set to null to turn-off auto dependencies
transformJvm = true // set to false to turn off JVM transformation
jvmVariant = "FU" // JVM transformation variant: FU,VH, or BOTH
jsVariant = "JS" // JS transformation variant: JS or IR
@@ -203,7 +203,7 @@ Declare AtomicFU version:
```xml
<properties>
- <atomicfu.version>0.18.3</atomicfu.version>
+ <atomicfu.version>0.18.4</atomicfu.version>
</properties>
```
diff --git a/gradle.properties b/gradle.properties
index 693ffa4..de1cd79 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -2,7 +2,7 @@
# Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
#
-version=0.18.3-SNAPSHOT
+version=0.18.4-SNAPSHOT
group=org.jetbrains.kotlinx
kotlin_version=1.7.0