Multi-platform Kotlin/Native
diff --git a/README.md b/README.md
index 8a9f915..d188a7e 100644
--- a/README.md
+++ b/README.md
@@ -10,6 +10,10 @@
 * Use Kotlin-specific extensions (e.g. inline `updateAndGet` and `getAndUpdate` functions).
 * Compile-time dependency only (no runtime dependencies).
 * Post-compilation bytecode transformer that declares all the relevant field updaters for you. 
+* Cross-platform 
+  * Kotlin/JS and Kotlin/Native (single-thread only) are supported, too.
+  * However, they work as a library dependency at the moment (unlike Kotlin/JVM).
+  * This enables writing common Kotlin code with atomics.
 
 ## Example
 
diff --git a/gradle/publish-bintray.gradle b/gradle/publish-bintray.gradle
index bf8c287..7db5922 100644
--- a/gradle/publish-bintray.gradle
+++ b/gradle/publish-bintray.gradle
@@ -45,6 +45,7 @@
 bintray {
     user = project.hasProperty('bintrayUser') ? project.property('bintrayUser') : System.getenv('BINTRAY_USER')
     key = project.hasProperty('bintrayApiKey') ? project.property('bintrayApiKey') : System.getenv('BINTRAY_API_KEY')
+    override = true // more multi-platfrom Kotlin/Native publishing
     pkg {
         userOrg = 'kotlin'
         repo = 'kotlinx'