Skip to content

Commit

Permalink
Version 0.18.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mvicsokolova committed Jun 30, 2022
1 parent 8f500b2 commit af28afa
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change log for kotlinx.atomicfu

# Version 0.18.2

* In Kotlin 1.7.10 the name of `atomicfu-runtime` module was reverted back to `kotlinx-atomicfu-runtime`,
as the renaming was an incompatible change.
Fixed `atomicfu-gradle-plugin` to add `kotlinx-atomicfu-runtime` dependency directly.

# Version 0.18.1

* Fix for the compatibility issue: add `atomicfu-runtime` dependency directly since Kotlin 1.7.10.
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.1/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.2/pom)

The idiomatic way to use atomic operations in Kotlin.

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

```groovy
buildscript {
ext.atomicfu_version = '0.18.1'
ext.atomicfu_version = '0.18.2'
dependencies {
classpath "org.jetbrains.kotlinx:atomicfu-gradle-plugin:$atomicfu_version"
Expand Down Expand Up @@ -167,7 +167,7 @@ To set configuration options you should create `atomicfu` section in a `build.gr
like this:
```groovy
atomicfu {
dependenciesVersion = '0.18.1'
dependenciesVersion = '0.18.2'
}
```

Expand All @@ -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.1' // set to null to turn-off auto dependencies
dependenciesVersion = '0.18.2' // 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
Expand All @@ -203,7 +203,7 @@ Declare AtomicFU version:

```xml
<properties>
<atomicfu.version>0.18.1</atomicfu.version>
<atomicfu.version>0.18.2</atomicfu.version>
</properties>
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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.1-SNAPSHOT
version=0.18.2-SNAPSHOT
group=org.jetbrains.kotlinx

kotlin_version=1.7.0
Expand Down

0 comments on commit af28afa

Please sign in to comment.