Skip to content

Commit

Permalink
Version 0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
elizarov committed Sep 4, 2019
1 parent 075f869 commit 8ea41d1
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change log for kotlinx.atomicfu

# Version 0.13.0

* Gradle version 5.6.1 with Gradle metadata format version 1.0 (stable) for native modules.
* Optimized volatile-only fields in JVM.
* Supported unchecked cast erasure (including array elements).
* Fixed inline functions on array elements.
* Fixed shutdown sequence of LockFreedomTestEnvironment.

# Version 0.12.11

* Support suspending functions in LockFreedomTestEnvironment.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ See [additional configuration](#additional-configuration) if that needs tweaking

```groovy
buildscript {
ext.atomicfu_version = '0.12.11'
ext.atomicfu_version = '0.13.0'
dependencies {
classpath "org.jetbrains.kotlinx:atomicfu-gradle-plugin:$atomicfu_version"
Expand Down Expand Up @@ -155,7 +155,7 @@ There are the following additional parameters (with their defaults):

```groovy
atomicfu {
dependenciesVersion = '0.12.11' // set to null to turn-off auto dependencies
dependenciesVersion = '0.13.0' // set to null to turn-off auto dependencies
transformJvm = true // set to false to turn off JVM transformation
transformJs = true // set to false to turn off JS transformation
variant = "FU" // JVM transformation variant: FU,VH, or BOTH
Expand All @@ -169,7 +169,7 @@ Declare AtomicFU version:

```xml
<properties>
<atomicfu.version>0.12.11</atomicfu.version>
<atomicfu.version>0.13.0</atomicfu.version>
</properties>
```

Expand Down
6 changes: 4 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = 0.12.11-SNAPSHOT
version = 0.13.0-SNAPSHOT
group = org.jetbrains.kotlinx

kotlin_version=1.3.50
Expand All @@ -15,4 +15,6 @@ mocha_version=4.1.0
mocha_headless_chrome_version=1.8.2
mocha_teamcity_reporter_version=2.2.2
source_map_support_version=0.5.3
kotlin.incremental.multiplatform=true

kotlin.incremental.multiplatform=true
kotlin.native.ignoreDisabledTargets=true

0 comments on commit 8ea41d1

Please sign in to comment.