1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
|
# 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)
* Kotlin version 1.2.71
* Incremental JS compilation is fixed in plugin
## Version 0.11.7
* Fixed non-transformed AtomicBoolean and its tests
* AtomicFUGradlePlugin: More consistent task naming & code refactoring
## Version 0.11.6
* Kotlin/Native version 0.9
## Version 0.11.5
* Gradle plugin for JS: Fixed paths on Windows
## Version 0.11.4
* JS: Transformer added. It is now a compile-only dependency just like on JVM.
* JVM: Default transformation variant is changed back to JDK6-compatible "FU".
* `atomicfu { variant = xxx }` configuration section in Gradle can be used to change it.
## Version 0.11.3
* Fixed lost files during class analysis phase.
## Version 0.11.2
* Kotlin version 1.2.61
* Kotlin/Native version 0.8.2
* More user-friendly Gradle plugin for Kotlin/JVM and multi-release jar by default. See updated section in [README.md](README.md#Gradle)
* Supports `internal` atomic variables that are accessed from a different package in the same module.
## Version 0.11.1
* Kotlin version 1.2.60
* Kotlin/Native version 0.8.1
## Version 0.11.0
* AtomicBoolean support (see #6)
* Kotlin/Native 0.9-dev-2922, all platforms, published to Maven Central
## Version 0.10.3-native
* Kotlin 1.2.51.
* Initial Kotlin/Native support:
* Build for Kotlin/Native 0.8.
* Only JS-like single-threaded applications are supported (no actual atomics).
* Supported targets: "ios_arm64", "ios_arm32", "ios_x64", "macos_x64".
* NOTE: This version is not available in NPM and Maven Central. Use this Bintray repository:
* `maven { url "https://kotlin.bintray.com/kotlinx" }`
## Version 0.10.3
* Kotlin 1.2.50.
## Version 0.10.2
* JS: Main file renamed to kotlinx-atomicfu.js to match NPM module name.
## Version 0.10.1
* JS: NPM deployment.
## Version 0.10.0
* Kotlin 1.2.41.
* Multiplatform:
* Extracted common code into `atomicfu-common` module.
* Basic support on JS via `atomicfu-js` module (boxed objects, Bintray publishing only).
* JVM transformer:
* Preserve annotations on atomic fields.
* Ignore no-ops in flow analyzer (support more variety of code patterns).
## Version 0.9.2
* Replaced deprecated kotlin-stdlib-jre8 dependency with kotlin-stdlib-jdk8.
## Version 0.9.1
* Kotlin 1.2.0
## Version 0.9
* Support generation of `VarHandle` variant for Java 9.
## Version 0.8
* `atomicfu-gradle-plugin` introduced.
## Version 0.7
* Fixed lost ACC_STATIC on <clinit> methods.
* Publish to Maven Central.
## Version 0.6
* toString defined for debugging.
## Version 0.5
* Longer timeout to detect stalls in lock-free code, with shutdown logic
that detected them even on short runs.
* Kotlin 1.1.4
## Version 0.4
* Publish sources.
* Provide top-level `pauseLockFreeOp` for debugging.
* Stability improvements.
## Version 0.3
* Improved handling of compiler local variables for atomic fields.
* Support atomicVar.value = constant (with LDC instruction).
* Provide randomSpinWaitIntermission for lock-freedom tests.
## Version 0.2
* Support non-private atomic fields in nested classes that are accessed by other
classes in the same compilation unit.
* Support for lock-freedom testing on unprocessed code
(other potential uses via interceptors in the future).
## Version 0.1
* Initial release.
|