From da92508eb869e9e7e1f9bb073569d8cb08c54c70 Mon Sep 17 00:00:00 2001 From: Roman Elizarov Date: Thu, 18 Oct 2018 00:45:43 +0300 Subject: [PATCH] Version 0.11.11 --- CHANGES.md | 11 +++++++++++ README.md | 6 +++--- gradle.properties | 2 +- 3 files changed, 15 insertions(+), 4 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index f724194e..6048d36e 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,16 @@ # Change log for kotlinx.atomicfu +# Version 0.11.11 + +* Kotlin version Kotlin version 1.3.0-rc-146 (with K/N). +* Gradle plugin supports projects that use `kotlin-multiplatform` plugin. +* Disable Gradle metadata publishing for all but native modules. +* JS transformer is more robust and retains line numbers (see #25). + +# Version 0.11.10 + +* Kotlin version 1.3.0-rc-57 & Kotlin/Native 0.9.2 + # Version 0.11.9 * Kotlin/Native version 1.3.0-rc-116 (0.9.3) diff --git a/README.md b/README.md index 3003bd8b..bd3479c2 100644 --- a/README.md +++ b/README.md @@ -103,7 +103,7 @@ Add and apply AtomicFU plugin: ```groovy buildscript { - ext.atomicfu_version = '0.11.9' + ext.atomicfu_version = '0.11.11' dependencies { classpath "org.jetbrains.kotlinx:atomicfu-gradle-plugin:$atomicfu_version" @@ -174,7 +174,7 @@ repositories { } dependencies { - implementation 'org.jetbrains.kotlinx:atomicfu-native:0.11.9' + implementation 'org.jetbrains.kotlinx:atomicfu-native:0.11.11' } sourceSets { @@ -209,7 +209,7 @@ Declare AtomicFU version: ```xml - 0.11.9 + 0.11.11 ``` diff --git a/gradle.properties b/gradle.properties index 96b7e9fb..dd8abebb 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -version = 0.11.10-SNAPSHOT +version = 0.11.11-SNAPSHOT group = org.jetbrains.kotlinx kotlin_version=1.3.0-rc-146