Skip to content

Commit 1f12881

Browse files
committed
Version 0.11.9
* Kotlin/Native version 1.3.0-rc-116 (0.9.3) * Kotlin version 1.2.71
1 parent 4985719 commit 1f12881

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

CHANGES.md

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

3+
# Version 0.11.9
4+
5+
* Kotlin/Native version 1.3.0-rc-116 (0.9.3)
6+
* Kotlin version 1.2.71
7+
* Incremental JS compilation is fixed in plugin
8+
39
## Version 0.11.7
410

511
* Fixed non-transformed AtomicBoolean and its tests

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Add and apply AtomicFU plugin:
103103

104104
```groovy
105105
buildscript {
106-
ext.atomicfu_version = '0.11.7'
106+
ext.atomicfu_version = '0.11.9'
107107
108108
dependencies {
109109
classpath "org.jetbrains.kotlinx:atomicfu-gradle-plugin:$atomicfu_version"
@@ -140,7 +140,7 @@ This library is available for Kotlin/Native (`atomicfu-native`).
140140
It is a regular library and you should declare a normal dependency, no plugin is needed nor available.
141141
Only single-threaded code (JS-style) is currently supported.
142142

143-
Kotlin/Native supports only Gradle version 4.7 or later
143+
Kotlin/Native supports only Gradle version 4.7
144144
and you should use `kotlin-platform-native` plugin.
145145

146146
First of all, you'll need to enable Gradle metadata in your
@@ -174,7 +174,7 @@ repositories {
174174
}
175175
176176
dependencies {
177-
implementation 'org.jetbrains.kotlinx:atomicfu-native:0.11.3'
177+
implementation 'org.jetbrains.kotlinx:atomicfu-native:0.11.9'
178178
}
179179
180180
sourceSets {
@@ -209,7 +209,7 @@ Declare AtomicFU version:
209209

210210
```xml
211211
<properties>
212-
<atomicfu.version>0.11.7</atomicfu.version>
212+
<atomicfu.version>0.11.9</atomicfu.version>
213213
</properties>
214214
```
215215

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
version = 0.11.8-SNAPSHOT
1+
version = 0.11.9-SNAPSHOT
22
group = org.jetbrains.kotlinx
33

4-
kotlin_version = 1.2.61
5-
kotlin_native_version = 0.9
4+
kotlin_version = 1.2.71
5+
kotlin_native_version = 1.3.0-rc-116
66
asm_version = 5.2
77
slf4j_version = 1.8.0-alpha2
88
junit_version = 4.12

0 commit comments

Comments
 (0)