aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaria Sokolova <maria.sokolova@jetbrains.com>2024-04-17 10:07:45 +0200
committerMaria Sokolova <maria.sokolova@jetbrains.com>2024-04-17 10:07:45 +0200
commit5fe9b3d77a5a302881af0b3eeab2c545313fcb6b (patch)
treee816499c5966eb44901c0f1b7470e24a78f31a2d
parentb19c23f8ae072bd7b7b84b00f182dc408ecbf5ab (diff)
downloadkotlinx.atomicfu-upstream-master.tar.gz
Version 0.24.0upstream-master
-rw-r--r--CHANGES.md7
-rw-r--r--README.md12
-rw-r--r--gradle.properties6
-rw-r--r--integration-testing/examples/jdk-compatibility/gradle.properties2
-rw-r--r--integration-testing/examples/jvm-sample/gradle.properties2
-rw-r--r--integration-testing/examples/mpp-sample/gradle.properties2
-rw-r--r--integration-testing/examples/mpp-version-catalog/gradle/libs.versions.toml2
-rw-r--r--integration-testing/examples/multi-module-test/gradle.properties2
-rw-r--r--integration-testing/examples/plugin-order-bug/gradle.properties2
9 files changed, 22 insertions, 15 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 6784ce1..05d5484 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 721c531..96de1e7 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
<properties>
- <atomicfu.version>0.23.2</atomicfu.version>
+ <atomicfu.version>0.24.0</atomicfu.version>
</properties>
```
@@ -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 8c24f5e..083bddf 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 3e3b93f..0530d97 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 3e3b93f..0530d97 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 3e3b93f..0530d97 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 10e4e9f..0237ade 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 756c4f1..fac1792 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 fe91fea..a7dfa32 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