Prepare for release 5.0.0 (#576)

Signed-off-by: digitalbuddha <mnakhimovich@gmail.com>
This commit is contained in:
Mike Nakhimovich 2023-09-14 12:33:26 -04:00 committed by GitHub
parent 309ce65339
commit 219a2513ff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 4 deletions

View file

@ -1,6 +1,16 @@
# Changelog # 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) ## [5.0.0-beta03] (2023-08-11)

View file

@ -37,7 +37,7 @@
#### Android #### Android
```kotlin ```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" implementation "org.jetbrains.kotlinx:atomicfu:0.18.5"
``` ```
@ -46,7 +46,7 @@ implementation "org.jetbrains.kotlinx:atomicfu:0.18.5"
```kotlin ```kotlin
commonMain { commonMain {
dependencies { 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") implementation("org.jetbrains.kotlinx:atomicfu:0.18.5")
} }
} }

View file

@ -8,7 +8,7 @@ org.gradle.jvmargs=-XX:MaxMetaspaceSize=2G
# POM file # POM file
GROUP=org.mobilenativefoundation.store GROUP=org.mobilenativefoundation.store
VERSION_NAME=5.0.0-SNAPSHOT VERSION_NAME=5.0.0
POM_PACKAGING=pom POM_PACKAGING=pom
POM_DESCRIPTION = Store5 is a Kotlin Multiplatform network-resilient repository layer POM_DESCRIPTION = Store5 is a Kotlin Multiplatform network-resilient repository layer