From 5fe9b3d77a5a302881af0b3eeab2c545313fcb6b Mon Sep 17 00:00:00 2001 From: Maria Sokolova Date: Wed, 17 Apr 2024 10:07:45 +0200 Subject: [PATCH] Version 0.24.0 --- CHANGES.md | 7 +++++++ README.md | 12 ++++++------ gradle.properties | 6 +++--- .../examples/jdk-compatibility/gradle.properties | 2 +- .../examples/jvm-sample/gradle.properties | 2 +- .../examples/mpp-sample/gradle.properties | 2 +- .../mpp-version-catalog/gradle/libs.versions.toml | 2 +- .../examples/multi-module-test/gradle.properties | 2 +- .../examples/plugin-order-bug/gradle.properties | 2 +- 9 files changed, 22 insertions(+), 15 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 6784ce1f..05d5484d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,12 @@ # Change log for kotlinx.atomicfu +# Version 0.24.0 + +* Move the logic from koltin repository atomicfu gradle plugin to the gradle plugin in the library (#406). +* Store the version of `atomicfu-gradle-plugin` in `atomicfu.properties` file and read it from this file during application (#405). +* Fixed KT-63413, SynchronizedObject does not appear in the project Metadata (#404). +* ReentrantLock expect class declares a default constructor (#411). + # Version 0.23.2 * Always add a transitive dependency to the Native target (#380). diff --git a/README.md b/README.md index 721c5313..96de1e75 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.2/pom) +[![Maven Central](https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/atomicfu)](https://search.maven.org/artifact/org.jetbrains.kotlinx/atomicfu/0.24.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 @@ -124,7 +124,7 @@ buildscript { } dependencies { - classpath("org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.23.2") + classpath("org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.24.0") } } @@ -141,7 +141,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.23.2' + classpath 'org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.24.0' } } @@ -159,7 +159,7 @@ Maven configuration is supported for JVM projects. ```xml - 0.23.2 + 0.24.0 ``` @@ -306,7 +306,7 @@ To set configuration options you should create `atomicfu` section in a `build.gr like this: ```groovy atomicfu { - dependenciesVersion = '0.23.2' + dependenciesVersion = '0.24.0' } ``` @@ -328,7 +328,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.2' // set to null to turn-off auto dependencies + dependenciesVersion = '0.24.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 8c24f5e3..083bddf1 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,8 +1,8 @@ # -# Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. +# Copyright 2017-2024 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. # -version=0.23.2-SNAPSHOT +version=0.24.0-SNAPSHOT group=org.jetbrains.kotlinx kotlin_version=1.9.21 @@ -30,4 +30,4 @@ kotlin.mpp.enableCInteropCommonization=true # https://github.com/gradle/gradle/issues/11412 systemProp.org.gradle.internal.publish.checksums.insecure=true -org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=2g +org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=2g \ No newline at end of file diff --git a/integration-testing/examples/jdk-compatibility/gradle.properties b/integration-testing/examples/jdk-compatibility/gradle.properties index 3e3b93f2..0530d97c 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.2-SNAPSHOT +atomicfu_version=0.24.0-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 3e3b93f2..0530d97c 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.2-SNAPSHOT +atomicfu_version=0.24.0-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 3e3b93f2..0530d97c 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.2-SNAPSHOT +atomicfu_version=0.24.0-SNAPSHOT org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=2g diff --git a/integration-testing/examples/mpp-version-catalog/gradle/libs.versions.toml b/integration-testing/examples/mpp-version-catalog/gradle/libs.versions.toml index 10e4e9fa..0237ade4 100644 --- a/integration-testing/examples/mpp-version-catalog/gradle/libs.versions.toml +++ b/integration-testing/examples/mpp-version-catalog/gradle/libs.versions.toml @@ -1,7 +1,7 @@ [versions] junit = "4.13.2" kotlin = "1.9.21" -atomicfu = "0.23.2-SNAPSHOT" +atomicfu = "0.24.0-SNAPSHOT" ktor = "2.3.8" logback = "1.5.0" diff --git a/integration-testing/examples/multi-module-test/gradle.properties b/integration-testing/examples/multi-module-test/gradle.properties index 756c4f1d..fac1792d 100644 --- a/integration-testing/examples/multi-module-test/gradle.properties +++ b/integration-testing/examples/multi-module-test/gradle.properties @@ -1,4 +1,4 @@ kotlin_version=1.9.21 -atomicfu_version=0.23.2-SNAPSHOT +atomicfu_version=0.24.0-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 fe91fea5..a7dfa32e 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.2-SNAPSHOT +atomicfu_version=0.24.0-SNAPSHOT org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=2g