Skip to content

Commit 7969167

Browse files
committed
Version 0.18.5
1 parent c1a5a28 commit 7969167

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
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.5
4+
5+
* Support JVM IR compiler plugin (#246).
6+
* Update Kotlin to 1.7.20.
7+
* Added more tests for atomicfu-gradle-plugin (#255).
8+
39
# Version 0.18.4
410

511
* Fix KGP compatibility bug with freeCompilerArgs modification (#247).

README.md

Lines changed: 6 additions & 6 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.4/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.5/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
@@ -111,7 +111,7 @@ buildscript {
111111
}
112112

113113
dependencies {
114-
classpath("org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.18.4")
114+
classpath("org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.18.5")
115115
}
116116
}
117117

@@ -128,7 +128,7 @@ buildscript {
128128
mavenCentral()
129129
}
130130
dependencies {
131-
classpath 'org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.18.4'
131+
classpath 'org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.18.5'
132132
}
133133
}
134134
@@ -146,7 +146,7 @@ Maven configuration is supported for JVM projects.
146146

147147
```xml
148148
<properties>
149-
<atomicfu.version>0.18.4</atomicfu.version>
149+
<atomicfu.version>0.18.5</atomicfu.version>
150150
</properties>
151151
```
152152

@@ -289,7 +289,7 @@ To set configuration options you should create `atomicfu` section in a `build.gr
289289
like this:
290290
```groovy
291291
atomicfu {
292-
dependenciesVersion = '0.18.4'
292+
dependenciesVersion = '0.18.5'
293293
}
294294
```
295295

@@ -311,7 +311,7 @@ To turn off transformation for Kotlin/JS set option `transformJs` to `false`.
311311
Here are all available configuration options (with their defaults):
312312
```groovy
313313
atomicfu {
314-
dependenciesVersion = '0.18.4' // set to null to turn-off auto dependencies
314+
dependenciesVersion = '0.18.5' // set to null to turn-off auto dependencies
315315
transformJvm = true // set to false to turn off JVM transformation
316316
jvmVariant = "FU" // JVM transformation variant: FU,VH, or BOTH
317317
transformJs = true // set to false to turn off JVM transformation

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

88
kotlin_version=1.7.20

0 commit comments

Comments
 (0)