Skip to content

Commit

Permalink
Version 0.24.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mvicsokolova committed Apr 17, 2024
1 parent b19c23f commit 5fe9b3d
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 15 deletions.
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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).
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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")
}
}

Expand All @@ -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'
}
}
Expand All @@ -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>
```

Expand Down Expand Up @@ -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'
}
```

Expand All @@ -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
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion integration-testing/examples/jvm-sample/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion integration-testing/examples/mpp-sample/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Original file line number Diff line number Diff line change
@@ -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"

Expand Down
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 5fe9b3d

Please sign in to comment.