File tree Expand file tree Collapse file tree 3 files changed +11
-5
lines changed Expand file tree Collapse file tree 3 files changed +11
-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.17.1
4
+
5
+ * Support of ` org.jetbrains.kotlin.js ` plugin (#218 ).
6
+ * Fixed configuration cache bug. (#216 ).
7
+ * Bug fixes for delegated fields support (#179 ).
8
+
3
9
# Version 0.17.0
4
10
5
11
* Update Kotlin to 1.6.0.
Original file line number Diff line number Diff line change 2
2
3
3
[ ![ JetBrains incubator project] ( https://jb.gg/badges/incubator.svg )] ( https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub )
4
4
[ ![ GitHub license] ( https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat )] ( https://www.apache.org/licenses/LICENSE-2.0 )
5
- [ ![ Maven Central] ( https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/atomicfu )] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/atomicfu/0.17.0 /pom )
5
+ [ ![ Maven Central] ( https://img.shields.io/maven-central/v/org.jetbrains.kotlinx/atomicfu )] ( https://search.maven.org/artifact/org.jetbrains.kotlinx/atomicfu/0.17.1 /pom )
6
6
7
7
The idiomatic way to use atomic operations in Kotlin.
8
8
@@ -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.17.0 '
110
+ ext.atomicfu_version = '0.17.1 '
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.17.0 ' // set to null to turn-off auto dependencies
158
+ dependenciesVersion = '0.17.1 ' // 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.17.0 </atomicfu .version>
172
+ <atomicfu .version>0.17.1 </atomicfu .version>
173
173
</properties >
174
174
```
175
175
Original file line number Diff line number Diff line change 2
2
# Copyright 2016-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3
3
#
4
4
5
- version =0.17.0 -SNAPSHOT
5
+ version =0.17.1 -SNAPSHOT
6
6
group =org.jetbrains.kotlinx
7
7
8
8
kotlin_version =1.6.0
You can’t perform that action at this time.
0 commit comments