From 92ff33b4319970b8ab164c61c8ebfb6a69702955 Mon Sep 17 00:00:00 2001 From: Maria Sokolova Date: Fri, 28 Jun 2024 12:36:39 +0200 Subject: [PATCH] Version 0.25.0 --- CHANGES.md | 9 +++++++++ README.md | 14 +++++++------- gradle.properties | 2 +- .../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, 23 insertions(+), 14 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 05d5484d..b018b956 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,14 @@ # Change log for kotlinx.atomicfu +# Version 0.25.0 + +* Got rid of posix interop (#440). +* Apply `atomicfu-gradle-plugin` by id `org.jetbrains.kotlinx.atomicfu` without buildscript configuration (#443)(#445). +* Lots of cleanups and improvements in the build scripts. Thanks, @dkrasnoff! +* Updated Kotlin to `2.0.0` (#442). +* Updated kotlinx-metadata to `2.0.0` (#441). +* Updated Gradle to `8.7`. + # Version 0.24.0 * Move the logic from koltin repository atomicfu gradle plugin to the gradle plugin in the library (#406). diff --git a/README.md b/README.md index 640d4104..02aab8c1 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.24.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.25.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 @@ -149,7 +149,7 @@ buildscript { } dependencies { - classpath("org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.24.0") + classpath("org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.25.0") } } @@ -166,7 +166,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.24.0' + classpath 'org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.25.0' } } @@ -184,7 +184,7 @@ Maven configuration is supported for JVM projects. ```xml - 0.24.0 + 0.25.0 ``` @@ -288,7 +288,7 @@ IR for all the target backends: To turn on IR transformations set the following properties in your `gradle.properties` file: -> Please note, that starting from version `0.24.0` of the library your project is required to use `Kotlin version >= 1.9.0`. +> Please note, that starting from version `0.25.0` of the library your project is required to use `Kotlin version >= 1.9.0`. > See the [requirements section](#Requirements). ```groovy @@ -331,7 +331,7 @@ To set configuration options you should create `atomicfu` section in a `build.gr like this: ```groovy atomicfu { - dependenciesVersion = '0.24.0' + dependenciesVersion = '0.25.0' } ``` @@ -353,7 +353,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.24.0' // set to null to turn-off auto dependencies + dependenciesVersion = '0.25.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 e21604bf..3ed598e2 100644 --- a/gradle.properties +++ b/gradle.properties @@ -2,7 +2,7 @@ # Copyright 2017-2024 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. # -version=0.24.0-SNAPSHOT +version=0.25.0-SNAPSHOT group=org.jetbrains.kotlinx kotlin.native.ignoreDisabledTargets=true diff --git a/integration-testing/examples/jdk-compatibility/gradle.properties b/integration-testing/examples/jdk-compatibility/gradle.properties index e4e9cff2..f4ddc8a2 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=2.0.0 -atomicfu_version=0.24.0-SNAPSHOT +atomicfu_version=0.25.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 e4e9cff2..f4ddc8a2 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=2.0.0 -atomicfu_version=0.24.0-SNAPSHOT +atomicfu_version=0.25.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 e4e9cff2..f4ddc8a2 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=2.0.0 -atomicfu_version=0.24.0-SNAPSHOT +atomicfu_version=0.25.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 2d0cb380..385ff3cd 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 = "2.0.0" -atomicfu = "0.24.0-SNAPSHOT" +atomicfu = "0.25.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 461a1dfa..d953fa9d 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=2.0.0 -atomicfu_version=0.24.0-SNAPSHOT +atomicfu_version=0.25.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 a7dfa32e..9ebe1e64 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.24.0-SNAPSHOT +atomicfu_version=0.25.0-SNAPSHOT org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=2g