From 7e640bab1db140a398f735be97e3f07f97019ac0 Mon Sep 17 00:00:00 2001 From: Maria Sokolova Date: Mon, 22 Jan 2024 18:49:13 +0100 Subject: [PATCH] Version 0.23.2 --- CHANGES.md | 7 +++++++ README.md | 14 +++++++------- gradle.properties | 2 +- .../examples/jdk-compatibility/gradle.properties | 2 +- .../examples/jvm-sample/gradle.properties | 2 +- .../examples/mpp-sample/gradle.properties | 2 +- .../examples/plugin-order-bug/gradle.properties | 2 +- 7 files changed, 19 insertions(+), 12 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 1aca540e..6784ce1f 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,12 @@ # Change log for kotlinx.atomicfu +# Version 0.23.2 + +* Always add a transitive dependency to the Native target (#380). +* atomicfu-gradle-plugin adds atomicfu compiler plugin dependency transitively, and it's version is resolved on the user's side (#386). +* Fixed the bug with Java sources being lost during bytecode transformation (#395). +* Updated ASM version to 9.6 (#390). + # Version 0.23.1 * Updated Kotlin to 1.9.21 (#361). diff --git a/README.md b/README.md index 5d9ac161..c2e65f2f 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.23.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.23.2/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 @@ -34,7 +34,7 @@ ## Requirements -Starting from version `0.23.1` of the library your project is required to use: +Starting from version `0.23.2` of the library your project is required to use: * Gradle `7.0` or newer @@ -119,7 +119,7 @@ buildscript { } dependencies { - classpath("org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.23.1") + classpath("org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.23.2") } } @@ -136,7 +136,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.23.1' + classpath 'org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.23.2' } } @@ -154,7 +154,7 @@ Maven configuration is supported for JVM projects. ```xml - 0.23.1 + 0.23.2 ``` @@ -295,7 +295,7 @@ To set configuration options you should create `atomicfu` section in a `build.gr like this: ```groovy atomicfu { - dependenciesVersion = '0.23.1' + dependenciesVersion = '0.23.2' } ``` @@ -317,7 +317,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.23.1' // set to null to turn-off auto dependencies + dependenciesVersion = '0.23.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 transformJs = true // set to false to turn off JVM transformation diff --git a/gradle.properties b/gradle.properties index e615ddf5..8c24f5e3 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.23.1-SNAPSHOT +version=0.23.2-SNAPSHOT group=org.jetbrains.kotlinx kotlin_version=1.9.21 diff --git a/integration-testing/examples/jdk-compatibility/gradle.properties b/integration-testing/examples/jdk-compatibility/gradle.properties index c33fb659..3e3b93f2 100644 --- a/integration-testing/examples/jdk-compatibility/gradle.properties +++ b/integration-testing/examples/jdk-compatibility/gradle.properties @@ -2,6 +2,6 @@ ## Copyright 2016-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. ## kotlin_version=1.9.21 -atomicfu_version=0.23.1-SNAPSHOT +atomicfu_version=0.23.2-SNAPSHOT org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=2g diff --git a/integration-testing/examples/jvm-sample/gradle.properties b/integration-testing/examples/jvm-sample/gradle.properties index c33fb659..3e3b93f2 100644 --- a/integration-testing/examples/jvm-sample/gradle.properties +++ b/integration-testing/examples/jvm-sample/gradle.properties @@ -2,6 +2,6 @@ ## Copyright 2016-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. ## kotlin_version=1.9.21 -atomicfu_version=0.23.1-SNAPSHOT +atomicfu_version=0.23.2-SNAPSHOT org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=2g diff --git a/integration-testing/examples/mpp-sample/gradle.properties b/integration-testing/examples/mpp-sample/gradle.properties index c33fb659..3e3b93f2 100644 --- a/integration-testing/examples/mpp-sample/gradle.properties +++ b/integration-testing/examples/mpp-sample/gradle.properties @@ -2,6 +2,6 @@ ## Copyright 2016-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. ## kotlin_version=1.9.21 -atomicfu_version=0.23.1-SNAPSHOT +atomicfu_version=0.23.2-SNAPSHOT org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=2g diff --git a/integration-testing/examples/plugin-order-bug/gradle.properties b/integration-testing/examples/plugin-order-bug/gradle.properties index c7a6864d..fe91fea5 100644 --- a/integration-testing/examples/plugin-order-bug/gradle.properties +++ b/integration-testing/examples/plugin-order-bug/gradle.properties @@ -2,6 +2,6 @@ ## Copyright 2016-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. ## kotlin_version=1.9.20 -atomicfu_version=0.23.1-SNAPSHOT +atomicfu_version=0.23.2-SNAPSHOT org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=2g