Skip to content

Commit 8ea41d1

Browse files
committed
Version 0.13.0
1 parent 075f869 commit 8ea41d1

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

CHANGES.md

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

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+
311
# Version 0.12.11
412

513
* Support suspending functions in LockFreedomTestEnvironment.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ See [additional configuration](#additional-configuration) if that needs tweaking
107107

108108
```groovy
109109
buildscript {
110-
ext.atomicfu_version = '0.12.11'
110+
ext.atomicfu_version = '0.13.0'
111111
112112
dependencies {
113113
classpath "org.jetbrains.kotlinx:atomicfu-gradle-plugin:$atomicfu_version"
@@ -155,7 +155,7 @@ There are the following additional parameters (with their defaults):
155155

156156
```groovy
157157
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
159159
transformJvm = true // set to false to turn off JVM transformation
160160
transformJs = true // set to false to turn off JS transformation
161161
variant = "FU" // JVM transformation variant: FU,VH, or BOTH
@@ -169,7 +169,7 @@ Declare AtomicFU version:
169169

170170
```xml
171171
<properties>
172-
<atomicfu.version>0.12.11</atomicfu.version>
172+
<atomicfu.version>0.13.0</atomicfu.version>
173173
</properties>
174174
```
175175

gradle.properties

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = 0.12.11-SNAPSHOT
1+
version = 0.13.0-SNAPSHOT
22
group = org.jetbrains.kotlinx
33

44
kotlin_version=1.3.50
@@ -15,4 +15,6 @@ mocha_version=4.1.0
1515
mocha_headless_chrome_version=1.8.2
1616
mocha_teamcity_reporter_version=2.2.2
1717
source_map_support_version=0.5.3
18-
kotlin.incremental.multiplatform=true
18+
19+
kotlin.incremental.multiplatform=true
20+
kotlin.native.ignoreDisabledTargets=true

0 commit comments

Comments
 (0)