Prepare for release 5.0.0 (#576)
Signed-off-by: digitalbuddha <mnakhimovich@gmail.com>
This commit is contained in:
parent
309ce65339
commit
219a2513ff
3 changed files with 14 additions and 4 deletions
12
CHANGELOG.md
12
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)
|
||||
|
||||
|
|
|
@ -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")
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue