diff --git a/CHANGELOG.md b/CHANGELOG.md index 83870f2..d47cb26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ # Changelog -## [Unreleased] +### Thank you to all our wonderful contributors and users + +## [5.0.0] (2023-09-14 ) +### Stable release of Store 5, major additions since Store 4 (no breaking changes) +* MutableStore +* Validator +* Fallback Mechanism +* KMP support +* Conflict Resolution for store writes +* Removal of experimental duration APIs +* StoreResult.NoNewData ## [5.0.0-beta03] (2023-08-11) diff --git a/README.md b/README.md index e689b3c..73a24a1 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ #### Android ```kotlin -implementation "org.mobilenativefoundation.store:store5:5.0.0-beta03" +implementation "org.mobilenativefoundation.store:store5:5.0.0" implementation "org.jetbrains.kotlinx:atomicfu:0.18.5" ``` @@ -46,7 +46,7 @@ implementation "org.jetbrains.kotlinx:atomicfu:0.18.5" ```kotlin commonMain { dependencies { - implementation("org.mobilenativefoundation.store:store5:5.0.0-beta03") + implementation("org.mobilenativefoundation.store:store5:5.0.0") implementation("org.jetbrains.kotlinx:atomicfu:0.18.5") } } diff --git a/gradle.properties b/gradle.properties index 81bb606..0d65fba 100644 --- a/gradle.properties +++ b/gradle.properties @@ -8,7 +8,7 @@ org.gradle.jvmargs=-XX:MaxMetaspaceSize=2G # POM file GROUP=org.mobilenativefoundation.store -VERSION_NAME=5.0.0-SNAPSHOT +VERSION_NAME=5.0.0 POM_PACKAGING=pom POM_DESCRIPTION = Store5 is a Kotlin Multiplatform network-resilient repository layer