From f1d04012a828bae264a992c260deb2975cd00451 Mon Sep 17 00:00:00 2001 From: mvicsokolova Date: Tue, 21 Feb 2023 12:53:20 +0100 Subject: [PATCH] Version 0.20.0 --- CHANGES.md | 5 +++++ README.md | 12 ++++++------ gradle.properties | 2 +- 3 files changed, 12 insertions(+), 7 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index ae1e8b98..0a84f243 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,10 @@ # Change log for kotlinx.atomicfu +# Version 0.20.0 + +* Update Kotlin to 1.8.10. +* Support all official K/N targets (#275). + # Version 0.19.0 * Update Kotlin to 1.8.0. diff --git a/README.md b/README.md index bd8b7158..c68b7008 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.19.0/pom) +[![Maven Central](https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/atomicfu)](https://search.maven.org/artifact/org.jetbrains.kotlinx/atomicfu/0.20.0/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.19.0") + classpath("org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.20.0") } } @@ -128,7 +128,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.19.0' + classpath 'org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.20.0' } } @@ -146,7 +146,7 @@ Maven configuration is supported for JVM projects. ```xml - 0.19.0 + 0.20.0 ``` @@ -290,7 +290,7 @@ To set configuration options you should create `atomicfu` section in a `build.gr like this: ```groovy atomicfu { - dependenciesVersion = '0.19.0' + dependenciesVersion = '0.20.0' } ``` @@ -312,7 +312,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.19.0' // set to null to turn-off auto dependencies + dependenciesVersion = '0.20.0' // 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 0273ff99..ae48789f 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.19.0-SNAPSHOT +version=0.20.0-SNAPSHOT group=org.jetbrains.kotlinx kotlin_version=1.8.10