File tree Expand file tree Collapse file tree 3 files changed +13
-7
lines changed Expand file tree Collapse file tree 3 files changed +13
-7
lines changed Original file line number Diff line number Diff line change 1
1
# Change log for kotlinx.atomicfu
2
2
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
+
3
9
## Version 0.11.7
4
10
5
11
* Fixed non-transformed AtomicBoolean and its tests
Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ Add and apply AtomicFU plugin:
103
103
104
104
``` groovy
105
105
buildscript {
106
- ext.atomicfu_version = '0.11.7 '
106
+ ext.atomicfu_version = '0.11.9 '
107
107
108
108
dependencies {
109
109
classpath "org.jetbrains.kotlinx:atomicfu-gradle-plugin:$atomicfu_version"
@@ -140,7 +140,7 @@ This library is available for Kotlin/Native (`atomicfu-native`).
140
140
It is a regular library and you should declare a normal dependency, no plugin is needed nor available.
141
141
Only single-threaded code (JS-style) is currently supported.
142
142
143
- Kotlin/Native supports only Gradle version 4.7 or later
143
+ Kotlin/Native supports only Gradle version 4.7
144
144
and you should use ` kotlin-platform-native ` plugin.
145
145
146
146
First of all, you'll need to enable Gradle metadata in your
@@ -174,7 +174,7 @@ repositories {
174
174
}
175
175
176
176
dependencies {
177
- implementation 'org.jetbrains.kotlinx:atomicfu-native:0.11.3 '
177
+ implementation 'org.jetbrains.kotlinx:atomicfu-native:0.11.9 '
178
178
}
179
179
180
180
sourceSets {
@@ -209,7 +209,7 @@ Declare AtomicFU version:
209
209
210
210
``` xml
211
211
<properties >
212
- <atomicfu .version>0.11.7 </atomicfu .version>
212
+ <atomicfu .version>0.11.9 </atomicfu .version>
213
213
</properties >
214
214
```
215
215
Original file line number Diff line number Diff line change 1
- version = 0.11.8 -SNAPSHOT
1
+ version = 0.11.9 -SNAPSHOT
2
2
group = org.jetbrains.kotlinx
3
3
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
6
6
asm_version = 5.2
7
7
slf4j_version = 1.8.0-alpha2
8
8
junit_version = 4.12
You can’t perform that action at this time.
0 commit comments