File tree Expand file tree Collapse file tree 3 files changed +15
-5
lines changed Expand file tree Collapse file tree 3 files changed +15
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Change log for kotlinx.atomicfu
2
2
3
+ # Version 0.13.0
4
+
5
+ * Gradle version 5.6.1 with Gradle metadata format version 1.0 (stable) for native modules.
6
+ * Optimized volatile-only fields in JVM.
7
+ * Supported unchecked cast erasure (including array elements).
8
+ * Fixed inline functions on array elements.
9
+ * Fixed shutdown sequence of LockFreedomTestEnvironment.
10
+
3
11
# Version 0.12.11
4
12
5
13
* Support suspending functions in LockFreedomTestEnvironment.
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ See [additional configuration](#additional-configuration) if that needs tweaking
107
107
108
108
``` groovy
109
109
buildscript {
110
- ext.atomicfu_version = '0.12.11 '
110
+ ext.atomicfu_version = '0.13.0 '
111
111
112
112
dependencies {
113
113
classpath "org.jetbrains.kotlinx:atomicfu-gradle-plugin:$atomicfu_version"
@@ -155,7 +155,7 @@ There are the following additional parameters (with their defaults):
155
155
156
156
``` groovy
157
157
atomicfu {
158
- dependenciesVersion = '0.12.11 ' // set to null to turn-off auto dependencies
158
+ dependenciesVersion = '0.13.0 ' // set to null to turn-off auto dependencies
159
159
transformJvm = true // set to false to turn off JVM transformation
160
160
transformJs = true // set to false to turn off JS transformation
161
161
variant = "FU" // JVM transformation variant: FU,VH, or BOTH
@@ -169,7 +169,7 @@ Declare AtomicFU version:
169
169
170
170
``` xml
171
171
<properties >
172
- <atomicfu .version>0.12.11 </atomicfu .version>
172
+ <atomicfu .version>0.13.0 </atomicfu .version>
173
173
</properties >
174
174
```
175
175
Original file line number Diff line number Diff line change 1
- version = 0.12.11 -SNAPSHOT
1
+ version = 0.13.0 -SNAPSHOT
2
2
group = org.jetbrains.kotlinx
3
3
4
4
kotlin_version =1.3.50
@@ -15,4 +15,6 @@ mocha_version=4.1.0
15
15
mocha_headless_chrome_version =1.8.2
16
16
mocha_teamcity_reporter_version =2.2.2
17
17
source_map_support_version =0.5.3
18
- kotlin.incremental.multiplatform =true
18
+
19
+ kotlin.incremental.multiplatform =true
20
+ kotlin.native.ignoreDisabledTargets =true
You can’t perform that action at this time.
0 commit comments