File tree Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Change log for kotlinx.atomicfu
2
2
3
+ ## Version 0.11.2
4
+
5
+ * Kotlin version 1.2.61
6
+ * Kotlin/Native version 0.8.2
7
+ * More user-friendly Gradle plugin for Kotlin/JVM and multi-release jar by default. See updated section in [ README.md] ( README.md#Gradle )
8
+ * Supports ` internal ` atomic variables that are accessed from a different package in the same module.
9
+
3
10
## Version 0.11.1
4
11
5
12
* Kotlin version 1.2.60
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ Declare AtomicFU version:
96
96
97
97
``` xml
98
98
<properties >
99
- <atomicfu .version>0.11.1 </atomicfu .version>
99
+ <atomicfu .version>0.11.2 </atomicfu .version>
100
100
</properties >
101
101
```
102
102
@@ -167,7 +167,7 @@ Add and apply AtomicFU plugin:
167
167
168
168
``` groovy
169
169
buildscript {
170
- ext.atomicfu_version = '0.11.1 '
170
+ ext.atomicfu_version = '0.11.2 '
171
171
172
172
dependencies {
173
173
classpath "org.jetbrains.kotlinx:atomicfu-gradle-plugin:$atomicfu_version"
@@ -245,7 +245,7 @@ repositories {
245
245
}
246
246
247
247
dependencies {
248
- implementation 'org.jetbrains.kotlinx:atomicfu-native:0.11.1 '
248
+ implementation 'org.jetbrains.kotlinx:atomicfu-native:0.11.2 '
249
249
}
250
250
251
251
sourceSets {
Original file line number Diff line number Diff line change 1
- version = 0.11.1 -SNAPSHOT
1
+ version = 0.11.2 -SNAPSHOT
2
2
group = org.jetbrains.kotlinx
3
3
4
4
kotlin_version = 1.2.61
You can’t perform that action at this time.
0 commit comments