Skip to content

Commit f83c00d

Browse files
committed
Version 0.23.0
1 parent 2f3bea6 commit f83c00d

File tree

6 files changed

+24
-14
lines changed

6 files changed

+24
-14
lines changed

CHANGES.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Change log for kotlinx.atomicfu
22

3+
# Version 0.23.0
4+
5+
* Updated Kotlin to 1.9.20 (#361).
6+
* Updated Gradle version to 8.3.
7+
* Supported transformations for Native targets 🎉 (#363) .
8+
* Introduced WebAssembly target (`wasmJs` and `wasmWasi`) 🎉 (#334).
9+
* Improved integration testing for `atomicfu-gradle-plugin` (#345).
10+
* Updated implementation of native atomics (#336).
11+
* Got rid of `previous-compilation-data.bin` file in META-INF (#344).
12+
313
# Version 0.22.0
414

515
* Updated Kotlin to 1.9.0 (#330).

README.md

+7-7
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.22.0/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.23.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
@@ -34,7 +34,7 @@
3434

3535
## Requirements
3636

37-
Starting from version `0.22.0` of the library your project is required to use:
37+
Starting from version `0.23.0` of the library your project is required to use:
3838

3939
* Gradle `7.0` or newer
4040

@@ -119,7 +119,7 @@ buildscript {
119119
}
120120

121121
dependencies {
122-
classpath("org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.22.0")
122+
classpath("org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.23.0")
123123
}
124124
}
125125

@@ -136,7 +136,7 @@ buildscript {
136136
mavenCentral()
137137
}
138138
dependencies {
139-
classpath 'org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.22.0'
139+
classpath 'org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.23.0'
140140
}
141141
}
142142
@@ -154,7 +154,7 @@ Maven configuration is supported for JVM projects.
154154

155155
```xml
156156
<properties>
157-
<atomicfu.version>0.22.0</atomicfu.version>
157+
<atomicfu.version>0.23.0</atomicfu.version>
158158
</properties>
159159
```
160160

@@ -295,7 +295,7 @@ To set configuration options you should create `atomicfu` section in a `build.gr
295295
like this:
296296
```groovy
297297
atomicfu {
298-
dependenciesVersion = '0.22.0'
298+
dependenciesVersion = '0.23.0'
299299
}
300300
```
301301

@@ -317,7 +317,7 @@ To turn off transformation for Kotlin/JS set option `transformJs` to `false`.
317317
Here are all available configuration options (with their defaults):
318318
```groovy
319319
atomicfu {
320-
dependenciesVersion = '0.22.0' // set to null to turn-off auto dependencies
320+
dependenciesVersion = '0.23.0' // set to null to turn-off auto dependencies
321321
transformJvm = true // set to false to turn off JVM transformation
322322
jvmVariant = "FU" // JVM transformation variant: FU,VH, or BOTH
323323
transformJs = true // set to false to turn off JVM transformation

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
33
#
44

5-
version=0.22.0-SNAPSHOT
5+
version=0.23.0-SNAPSHOT
66
group=org.jetbrains.kotlinx
77

88
kotlin_version=1.9.20

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
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.22.0-SNAPSHOT
5+
atomicfu_version=0.23.0-SNAPSHOT

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
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.22.0-SNAPSHOT
5+
atomicfu_version=0.23.0-SNAPSHOT

integration-testing/src/functionalTest/kotlin/kotlinx.atomicfu.gradle.plugin.test/cases/smoke/DependencyCheckerTest.kt

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class DependencyParserSmokeTest {
1717
"Root project 'jvm-sample'\n" +
1818
"------------------------------------------------------------\n" +
1919
"compileClasspath - Compile classpath for null/main.\n" +
20-
"+--- org.jetbrains.kotlinx:atomicfu-jvm:0.22.0-SNAPSHOT\n" +
20+
"+--- org.jetbrains.kotlinx:atomicfu-jvm:0.23.0-SNAPSHOT\n" +
2121
"+--- org.jetbrains.kotlin:kotlin-stdlib:1.9.0\n" +
2222
"| +--- org.jetbrains.kotlin:kotlin-stdlib-common:1.9.0\n" +
2323
"| \\--- org.jetbrains:annotations:13.0\n" +
@@ -28,10 +28,10 @@ class DependencyParserSmokeTest {
2828
" \\--- org.hamcrest:hamcrest-core:1.3\n" +
2929
"\n" +
3030
"compileOnly - Compile only dependencies for null/main. (n)\n" +
31-
"\\--- org.jetbrains.kotlinx:atomicfu-jvm:0.22.0-SNAPSHOT (n)\n" +
31+
"\\--- org.jetbrains.kotlinx:atomicfu-jvm:0.23.0-SNAPSHOT (n)\n" +
3232
"\n" +
3333
"compileOnlyDependenciesMetadata\n" +
34-
"\\--- org.jetbrains.kotlinx:atomicfu-jvm:0.22.0-SNAPSHOT\n" +
34+
"\\--- org.jetbrains.kotlinx:atomicfu-jvm:0.23.0-SNAPSHOT\n" +
3535
"\n" +
3636
"default - Configuration for default artifacts. (n)\n" +
3737
"No dependencies\n" +
@@ -73,7 +73,7 @@ class DependencyParserSmokeTest {
7373
)
7474
assertEquals(
7575
listOf(
76-
"org.jetbrains.kotlinx:atomicfu-jvm:0.22.0-SNAPSHOT",
76+
"org.jetbrains.kotlinx:atomicfu-jvm:0.23.0-SNAPSHOT",
7777
"org.jetbrains.kotlin:kotlin-stdlib:1.9.0",
7878
"org.jetbrains.kotlin:kotlin-stdlib-common:1.9.0",
7979
"org.jetbrains:annotations:13.0",

0 commit comments

Comments
 (0)