Skip to content

Commit 552d0fe

Browse files
committed
Version 0.11.2
1 parent 17079a4 commit 552d0fe

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
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.11.2
4+
5+
* Kotlin version 1.2.61
6+
* Kotlin/Native version 0.8.2
7+
* More user-friendly Gradle plugin for Kotlin/JVM and multi-release jar by default. See updated section in [README.md](README.md#Gradle)
8+
* Supports `internal` atomic variables that are accessed from a different package in the same module.
9+
310
## Version 0.11.1
411

512
* Kotlin version 1.2.60

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ Declare AtomicFU version:
9696

9797
```xml
9898
<properties>
99-
<atomicfu.version>0.11.1</atomicfu.version>
99+
<atomicfu.version>0.11.2</atomicfu.version>
100100
</properties>
101101
```
102102

@@ -167,7 +167,7 @@ Add and apply AtomicFU plugin:
167167

168168
```groovy
169169
buildscript {
170-
ext.atomicfu_version = '0.11.1'
170+
ext.atomicfu_version = '0.11.2'
171171
172172
dependencies {
173173
classpath "org.jetbrains.kotlinx:atomicfu-gradle-plugin:$atomicfu_version"
@@ -245,7 +245,7 @@ repositories {
245245
}
246246
247247
dependencies {
248-
implementation 'org.jetbrains.kotlinx:atomicfu-native:0.11.1'
248+
implementation 'org.jetbrains.kotlinx:atomicfu-native:0.11.2'
249249
}
250250
251251
sourceSets {

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = 0.11.1-SNAPSHOT
1+
version = 0.11.2-SNAPSHOT
22
group = org.jetbrains.kotlinx
33

44
kotlin_version = 1.2.61

0 commit comments

Comments
 (0)