Skip to content

Commit dc5c7fe

Browse files
committed
AtomicFu version 0.11.4: Back to default FU variant and JS transform
* Distribution no longer uses multi-version jar (unsuppored on Android) * JS version of the library does not deneds on AtomicFu: All the atomic boxes in JS are fully erased. Fixes #510
1 parent 1740ec7 commit dc5c7fe

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ kotlin_native_version=0.8.2
66

77
# Dependencies
88
junit_version=4.12
9-
atomicFU_version=0.11.3
9+
atomicFU_version=0.11.4
1010
html_version=0.6.8
1111
lincheck_version=1.9
1212
dokka_version=0.9.16-rdev-2-mpp-hacks

gradle/atomicfu-js.gradle

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
* Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

5+
apply plugin: 'kotlinx-atomicfu'
6+
57
dependencies {
6-
compile "org.jetbrains.kotlinx:atomicfu-js:$atomicFU_version"
8+
compileOnly "org.jetbrains.kotlinx:atomicfu-js:$atomicFU_version"
9+
testCompile "org.jetbrains.kotlinx:atomicfu-js:$atomicFU_version"
710
}

js/kotlinx-coroutines-core-js/npm/package.json

-3
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@
2020
"JavaScript",
2121
"JetBrains"
2222
],
23-
"dependencies": {
24-
"kotlinx-atomicfu": "$atomicFU_version"
25-
},
2623
"peerDependencies": {
2724
$kotlinDependency
2825
}

0 commit comments

Comments
 (0)