Prepare for release 5.0.0-beta02 (#569)

Signed-off-by: Matt Ramotar <mramotar@dropbox.com>
This commit is contained in:
Matt Ramotar 2023-07-21 10:28:38 -04:00 committed by GitHub
parent 74bb49ddb5
commit d7d34308cb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 16 additions and 7 deletions

View file

@ -2,16 +2,23 @@
## [Unreleased]
## [5.0.0-beta02] (2023-07-21)
* Fix breaking changes with Source of
Truth [#560](https://github.com/MobileNativeFoundation/Store/pull/560)
## [5.0.0-beta01] (2023-05-19)
* Delegate memory cache implementation and provide a hybrid cache with automatic list decomposition as a separate
* Delegate memory cache implementation and provide a hybrid cache with automatic list decomposition
as a separate
artifact [#548](https://github.com/MobileNativeFoundation/Store/pull/548)
## [5.0.0-alpha06] (2023-05-08)
* Separate MutableStoreBuilder from
StoreBuilder [#542](https://github.com/MobileNativeFoundation/Store/commit/e050a15afc21c22ffea10a6a7d5f1b436ee34a6a)
* Support Rx2 [#531](https://github.com/MobileNativeFoundation/Store/commit/7d73f08cc07294d00b176325af792b51874dfeff)
* Support
Rx2 [#531](https://github.com/MobileNativeFoundation/Store/commit/7d73f08cc07294d00b176325af792b51874dfeff)
* Introduce Fallback
Mechanisms [#545](https://github.com/MobileNativeFoundation/Store/commit/d1e46a9d02703c798738bc5fb645344fefb90dd4)
@ -260,7 +267,9 @@ This is a first alpha release of Store ported to RxJava 2.
* The change log for Store version 1.x can be
found [here](https://github.com/NYTimes/Store/blob/develop/CHANGELOG.md).
[Unreleased]: https://github.com/MobileNativeFoundation/Store/compare/v5.0.0-beta01...HEAD
[Unreleased]: https://github.com/MobileNativeFoundation/Store/compare/v5.0.0-beta02...HEAD
[5.0.0-beta02]: https://github.com/MobileNativeFoundation/Store/releases/tag/5.0.0-beta02
[5.0.0-beta01]: https://github.com/MobileNativeFoundation/Store/releases/tag/5.0.0-beta01

View file

@ -37,7 +37,7 @@
#### Android
```kotlin
implementation "org.mobilenativefoundation.store:store5:5.0.0-beta01"
implementation "org.mobilenativefoundation.store:store5:5.0.0-beta02"
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-beta01")
implementation("org.mobilenativefoundation.store:store5:5.0.0-beta02")
implementation("org.jetbrains.kotlinx:atomicfu:0.18.5")
}
}

View file

@ -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-beta02
POM_PACKAGING=pom
POM_DESCRIPTION = Store5 is a Kotlin Multiplatform network-resilient repository layer

View file

@ -18,7 +18,7 @@ testCore = "1.5.0"
kmmBridge = "0.3.2"
ktlint = "0.39.0"
kover = "0.6.0"
store = "5.0.0-beta01"
store = "5.0.0-beta02"
truth = "1.1.3"
[libraries]