From bb9c477996e6d966865e4d14b5307a9d4484e776 Mon Sep 17 00:00:00 2001 From: Matt Ramotar Date: Fri, 21 Jul 2023 10:16:51 -0400 Subject: [PATCH] Prepare for release 5.0.0-beta02 Signed-off-by: Matt Ramotar --- CHANGELOG.md | 15 ++++++++++++--- README.md | 4 ++-- gradle.properties | 2 +- gradle/libs.versions.toml | 2 +- 4 files changed, 16 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4db42b3b8..043a05b94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 163bd9aaf..3b80b30d6 100644 --- a/README.md +++ b/README.md @@ -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") } } diff --git a/gradle.properties b/gradle.properties index 81bb60689..61077e13e 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-beta02 POM_PACKAGING=pom POM_DESCRIPTION = Store5 is a Kotlin Multiplatform network-resilient repository layer diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 884e1c1e4..ce2b9b927 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -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]