Skip to content

Commit

Permalink
Version 0.26.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mvicsokolova committed Oct 18, 2024
1 parent 3e6a7ee commit 78e151a
Show file tree
Hide file tree
Showing 9 changed files with 28 additions and 17 deletions.
11 changes: 11 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Change log for kotlinx.atomicfu

# Version 0.26.0

* Updated Kotlin to `2.0.21` (#479).
* Removed JS Legacy Transformer and disabled `transformJs` flag by default (#478).
* Added `api` kotlinx-atomicfu dependency for JS and WASM targets (#475).
* Supported deprecated `linuxArm32Hfp` target (#455).
* Run Gradle plugin compilation via the fixed Kotlin compiler version (#472).
* Updated ASM to 9.7 (#473).
* Completed refactoring the library build scripts (#421). Kudos to @dkrasnoff! 🎉
* Added build/configuration caches and scans (#451).

# Version 0.25.0

* Got rid of posix interop (#440).
Expand Down
20 changes: 10 additions & 10 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.25.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.26.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 @@ -112,7 +112,7 @@ operations. They can be also atomically modified via `+=` and `-=` operators.
### Apply plugin
#### Gradle configuration

> **New plugin id:** Please pay attention, that starting from version `0.25.0` the plugin id is `org.jetbrains.kotlinx.atomicfu`
> **New plugin id:** Please pay attention, that starting from version `0.26.0` the plugin id is `org.jetbrains.kotlinx.atomicfu`
Add the following to your top-level build file:

Expand All @@ -121,7 +121,7 @@ Add the following to your top-level build file:

```kotlin
plugins {
id("org.jetbrains.kotlinx.atomicfu") version "0.25.0"
id("org.jetbrains.kotlinx.atomicfu") version "0.26.0"
}
```
</details>
Expand All @@ -131,7 +131,7 @@ plugins {

```groovy
plugins {
id 'org.jetbrains.kotlinx.atomicfu' version '0.25.0'
id 'org.jetbrains.kotlinx.atomicfu' version '0.26.0'
}
```
</details>
Expand All @@ -149,7 +149,7 @@ buildscript {
}

dependencies {
classpath("org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.25.0")
classpath("org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.26.0")
}
}

Expand All @@ -166,7 +166,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.25.0'
classpath 'org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.26.0'
}
}
Expand All @@ -184,7 +184,7 @@ Maven configuration is supported for JVM projects.

```xml
<properties>
<atomicfu.version>0.25.0</atomicfu.version>
<atomicfu.version>0.26.0</atomicfu.version>
</properties>
```

Expand Down Expand Up @@ -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.25.0` of the library your project is required to use `Kotlin version >= 1.9.0`.
> Please note, that starting from version `0.26.0` of the library your project is required to use `Kotlin version >= 1.9.0`.
> See the [requirements section](#Requirements).
```groovy
Expand Down Expand Up @@ -331,7 +331,7 @@ To set configuration options you should create `atomicfu` section in a `build.gr
like this:
```groovy
atomicfu {
dependenciesVersion = '0.25.0'
dependenciesVersion = '0.26.0'
}
```

Expand All @@ -354,7 +354,7 @@ Here are the valid options:
Here are all available configuration options (with their defaults):
```groovy
atomicfu {
dependenciesVersion = '0.25.0' // set to null to turn-off auto dependencies
dependenciesVersion = '0.26.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
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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.25.0-SNAPSHOT
version=0.26.0-SNAPSHOT
group=org.jetbrains.kotlinx

kotlin.native.ignoreDisabledTargets=true
Expand Down
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=2.0.21
atomicfu_version=0.25.0-SNAPSHOT
atomicfu_version=0.26.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=2.0.21
atomicfu_version=0.25.0-SNAPSHOT
atomicfu_version=0.26.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=2.0.21
atomicfu_version=0.25.0-SNAPSHOT
atomicfu_version=0.26.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 = "2.0.21"
atomicfu = "0.25.0-SNAPSHOT"
atomicfu = "0.26.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=2.0.21
atomicfu_version=0.25.0-SNAPSHOT
atomicfu_version=0.26.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.25.0-SNAPSHOT
atomicfu_version=0.26.0-SNAPSHOT

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

0 comments on commit 78e151a

Please sign in to comment.