aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormvicsokolova <maria.sokolova@jetbrains.com>2022-10-25 13:25:44 +0200
committermvicsokolova <maria.sokolova@jetbrains.com>2022-10-25 13:25:44 +0200
commit7969167e17502efbb1ee626b37e8c157b2bdb12b (patch)
treeb9208cc2299f2d9536370d41dca0f1e69209acbb
parentc1a5a280f5352bf607b3d735e9d7b4604ed0aa17 (diff)
downloadkotlinx.atomicfu-7969167e17502efbb1ee626b37e8c157b2bdb12b.tar.gz
Version 0.18.5
-rw-r--r--CHANGES.md6
-rw-r--r--README.md12
-rw-r--r--gradle.properties2
3 files changed, 13 insertions, 7 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 4225c92..1303cb4 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,5 +1,11 @@
# Change log for kotlinx.atomicfu
+# Version 0.18.5
+
+* Support JVM IR compiler plugin (#246).
+* Update Kotlin to 1.7.20.
+* Added more tests for atomicfu-gradle-plugin (#255).
+
# Version 0.18.4
* Fix KGP compatibility bug with freeCompilerArgs modification (#247).
diff --git a/README.md b/README.md
index 251bb0e..e3dd5b3 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.4/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.5/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
@@ -111,7 +111,7 @@ buildscript {
}
dependencies {
- classpath("org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.18.4")
+ classpath("org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.18.5")
}
}
@@ -128,7 +128,7 @@ buildscript {
mavenCentral()
}
dependencies {
- classpath 'org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.18.4'
+ classpath 'org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.18.5'
}
}
@@ -146,7 +146,7 @@ Maven configuration is supported for JVM projects.
```xml
<properties>
- <atomicfu.version>0.18.4</atomicfu.version>
+ <atomicfu.version>0.18.5</atomicfu.version>
</properties>
```
@@ -289,7 +289,7 @@ To set configuration options you should create `atomicfu` section in a `build.gr
like this:
```groovy
atomicfu {
- dependenciesVersion = '0.18.4'
+ dependenciesVersion = '0.18.5'
}
```
@@ -311,7 +311,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.4' // set to null to turn-off auto dependencies
+ dependenciesVersion = '0.18.5' // 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
transformJs = true // set to false to turn off JVM transformation
diff --git a/gradle.properties b/gradle.properties
index 988e974..903d60d 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.4-SNAPSHOT
+version=0.18.5-SNAPSHOT
group=org.jetbrains.kotlinx
kotlin_version=1.7.20