Skip to content

Commit 41f8d84

Browse files
committed
Version 0.12.7
1 parent 8339126 commit 41f8d84

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

CHANGES.md

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

3+
# Version 0.12.7
4+
5+
* Fixed BooleanArray setValue.
6+
* Fixed removal of inline methods on atomicfu types from bytecode.
7+
* Adjust kotlin.Metadata in JVM classes to remove atomicfu references completely.
8+
39
# Version 0.12.6
410

511
* Support additional configuration for dependencies and transforms.

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.6'
110+
ext.atomicfu_version = '0.12.7'
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.6' // set to null to turn-off auto dependencies
158+
dependenciesVersion = '0.12.7' // 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.6</atomicfu.version>
172+
<atomicfu.version>0.12.7</atomicfu.version>
173173
</properties>
174174
```
175175

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = 0.12.6-SNAPSHOT
1+
version = 0.12.7-SNAPSHOT
22
group = org.jetbrains.kotlinx
33

44
kotlin_version=1.3.30

0 commit comments

Comments
 (0)