Skip to content

Commit 5fe9b3d

Browse files
committed
Version 0.24.0
1 parent b19c23f commit 5fe9b3d

File tree

9 files changed

+22
-15
lines changed

9 files changed

+22
-15
lines changed

CHANGES.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Change log for kotlinx.atomicfu
22

3+
# Version 0.24.0
4+
5+
* Move the logic from koltin repository atomicfu gradle plugin to the gradle plugin in the library (#406).
6+
* Store the version of `atomicfu-gradle-plugin` in `atomicfu.properties` file and read it from this file during application (#405).
7+
* Fixed KT-63413, SynchronizedObject does not appear in the project Metadata (#404).
8+
* ReentrantLock expect class declares a default constructor (#411).
9+
310
# Version 0.23.2
411

512
* Always add a transitive dependency to the Native target (#380).

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Kotlin Beta](https://kotl.in/badges/beta.svg)](https://kotlinlang.org/docs/components-stability.html)
44
[![JetBrains official project](https://jb.gg/badges/official.svg)](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub)
55
[![GitHub license](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](https://www.apache.org/licenses/LICENSE-2.0)
6-
[![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)
6+
[![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)
77

88
>Note on Beta status: the plugin is in its active development phase and changes from release to release.
99
>We do provide a compatibility of atomicfu-transformed artifacts between releases, but we do not provide
@@ -124,7 +124,7 @@ buildscript {
124124
}
125125

126126
dependencies {
127-
classpath("org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.23.2")
127+
classpath("org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.24.0")
128128
}
129129
}
130130

@@ -141,7 +141,7 @@ buildscript {
141141
mavenCentral()
142142
}
143143
dependencies {
144-
classpath 'org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.23.2'
144+
classpath 'org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.24.0'
145145
}
146146
}
147147
@@ -159,7 +159,7 @@ Maven configuration is supported for JVM projects.
159159

160160
```xml
161161
<properties>
162-
<atomicfu.version>0.23.2</atomicfu.version>
162+
<atomicfu.version>0.24.0</atomicfu.version>
163163
</properties>
164164
```
165165

@@ -306,7 +306,7 @@ To set configuration options you should create `atomicfu` section in a `build.gr
306306
like this:
307307
```groovy
308308
atomicfu {
309-
dependenciesVersion = '0.23.2'
309+
dependenciesVersion = '0.24.0'
310310
}
311311
```
312312

@@ -328,7 +328,7 @@ To turn off transformation for Kotlin/JS set option `transformJs` to `false`.
328328
Here are all available configuration options (with their defaults):
329329
```groovy
330330
atomicfu {
331-
dependenciesVersion = '0.23.2' // set to null to turn-off auto dependencies
331+
dependenciesVersion = '0.24.0' // set to null to turn-off auto dependencies
332332
transformJvm = true // set to false to turn off JVM transformation
333333
jvmVariant = "FU" // JVM transformation variant: FU,VH, or BOTH
334334
transformJs = true // set to false to turn off JVM transformation

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#
2-
# Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
2+
# Copyright 2017-2024 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
33
#
44

5-
version=0.23.2-SNAPSHOT
5+
version=0.24.0-SNAPSHOT
66
group=org.jetbrains.kotlinx
77

88
kotlin_version=1.9.21
@@ -30,4 +30,4 @@ kotlin.mpp.enableCInteropCommonization=true
3030
# https://github.com/gradle/gradle/issues/11412
3131
systemProp.org.gradle.internal.publish.checksums.insecure=true
3232

33-
org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=2g
33+
org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=2g

integration-testing/examples/jdk-compatibility/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
## Copyright 2016-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
33
##
44
kotlin_version=1.9.21
5-
atomicfu_version=0.23.2-SNAPSHOT
5+
atomicfu_version=0.24.0-SNAPSHOT
66

77
org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=2g

integration-testing/examples/jvm-sample/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
## Copyright 2016-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
33
##
44
kotlin_version=1.9.21
5-
atomicfu_version=0.23.2-SNAPSHOT
5+
atomicfu_version=0.24.0-SNAPSHOT
66

77
org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=2g

integration-testing/examples/mpp-sample/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
## Copyright 2016-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
33
##
44
kotlin_version=1.9.21
5-
atomicfu_version=0.23.2-SNAPSHOT
5+
atomicfu_version=0.24.0-SNAPSHOT
66

77
org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=2g

integration-testing/examples/mpp-version-catalog/gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[versions]
22
junit = "4.13.2"
33
kotlin = "1.9.21"
4-
atomicfu = "0.23.2-SNAPSHOT"
4+
atomicfu = "0.24.0-SNAPSHOT"
55
ktor = "2.3.8"
66
logback = "1.5.0"
77

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
kotlin_version=1.9.21
2-
atomicfu_version=0.23.2-SNAPSHOT
2+
atomicfu_version=0.24.0-SNAPSHOT
33

44
org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=2g

integration-testing/examples/plugin-order-bug/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
## Copyright 2016-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
33
##
44
kotlin_version=1.9.20
5-
atomicfu_version=0.23.2-SNAPSHOT
5+
atomicfu_version=0.24.0-SNAPSHOT
66

77
org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=2g

0 commit comments

Comments
 (0)