Change log for kotlinx.atomicfu

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 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.