diff --git a/CHANGELOG.md b/CHANGELOG.md index c75a339c53..9ff5443096 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,37 @@ +## 1.14.1-SNAPSHOT (YYYY-MM-DD) + +### Breaking Changes + +- None. + +### Enhancements + +- None. + +### Fixed + +- None. + +### Compatibility + +- File format: Generates Realms with file format v23. +- Realm Studio 13.0.0 or above is required to open Realms created by this version. +- This release is compatible with the following Kotlin releases: + - Kotlin 1.9.0 and above. Support for experimental K2-compilation with `kotlin.experimental.tryK2=true`. + - Ktor 2.1.2 and above. + - Coroutines 1.7.0 and above. + - AtomicFu 0.18.3 and above. + - The new memory model only. See https://github.com/realm/realm-kotlin#kotlin-memory-model-and-coroutine-compatibility +- Minimum Kbson 0.3.0. +- Minimum Gradle version: 6.8.3. +- Minimum Android Gradle Plugin version: 4.1.3. +- Minimum Android SDK: 16. +- Minimum R8: 8.0.34. + +### Internal + +- None. + ## 1.14.0 (2024-03-08) ### Breaking Changes diff --git a/buildSrc/src/main/kotlin/Config.kt b/buildSrc/src/main/kotlin/Config.kt index 2f9963db97..95508209b5 100644 --- a/buildSrc/src/main/kotlin/Config.kt +++ b/buildSrc/src/main/kotlin/Config.kt @@ -62,7 +62,7 @@ val HOST_OS: OperatingSystem = findHostOs() object Realm { val ciBuild = (System.getenv("JENKINS_HOME") != null || System.getenv("CI") != null) - const val version = "1.14.0" + const val version = "1.14.1-SNAPSHOT" const val group = "io.realm.kotlin" const val projectUrl = "https://realm.io" const val pluginPortalId = "io.realm.kotlin"