Skip to content

Commit f206f5b

Browse files
committed
Version 0.28.0
1 parent 992f461 commit f206f5b

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed

CHANGES.md

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

3+
# Version 0.28.0
4+
* No issues reported for `0.28.0-beta`, so the `0.28.0` release only updates the version and includes exactly the same changes as version `0.28.0`.
5+
36
# Version 0.28.0-beta
47
* Updated ASM version to support JDK 24 (#429)
58
* Implemented thread parking primitives (#498)

README.md

Lines changed: 8 additions & 8 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.28.0-beta/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.28.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
@@ -121,7 +121,7 @@ Add the following to your top-level build file:
121121

122122
```kotlin
123123
plugins {
124-
id("org.jetbrains.kotlinx.atomicfu") version "0.28.0-beta"
124+
id("org.jetbrains.kotlinx.atomicfu") version "0.28.0"
125125
}
126126
```
127127
</details>
@@ -131,7 +131,7 @@ plugins {
131131

132132
```groovy
133133
plugins {
134-
id 'org.jetbrains.kotlinx.atomicfu' version '0.28.0-beta'
134+
id 'org.jetbrains.kotlinx.atomicfu' version '0.28.0'
135135
}
136136
```
137137
</details>
@@ -149,7 +149,7 @@ buildscript {
149149
}
150150

151151
dependencies {
152-
classpath("org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.28.0-beta")
152+
classpath("org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.28.0")
153153
}
154154
}
155155

@@ -166,7 +166,7 @@ buildscript {
166166
mavenCentral()
167167
}
168168
dependencies {
169-
classpath 'org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.28.0-beta'
169+
classpath 'org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.28.0'
170170
}
171171
}
172172
@@ -184,7 +184,7 @@ Maven configuration is supported for JVM projects.
184184

185185
```xml
186186
<properties>
187-
<atomicfu.version>0.28.0-beta</atomicfu.version>
187+
<atomicfu.version>0.28.0</atomicfu.version>
188188
</properties>
189189
```
190190

@@ -331,7 +331,7 @@ To set configuration options you should create `atomicfu` section in a `build.gr
331331
like this:
332332
```groovy
333333
atomicfu {
334-
dependenciesVersion = '0.28.0-beta'
334+
dependenciesVersion = '0.28.0'
335335
}
336336
```
337337

@@ -354,7 +354,7 @@ Here are the valid options:
354354
Here are all available configuration options (with their defaults):
355355
```groovy
356356
atomicfu {
357-
dependenciesVersion = '0.28.0-beta' // set to null to turn-off auto dependencies
357+
dependenciesVersion = '0.28.0' // set to null to turn-off auto dependencies
358358
transformJvm = true // set to false to turn off JVM transformation
359359
jvmVariant = "FU" // JVM transformation variant: FU,VH, or BOTH
360360
}

0 commit comments

Comments
 (0)