From c10f355d24a95e4e7702adaee34a07e3aa7c8786 Mon Sep 17 00:00:00 2001 From: Matt Ramotar Date: Tue, 9 May 2023 13:45:22 -0400 Subject: [PATCH] Release 5.0.0-alpha06 (#552) Signed-off-by: matt-ramotar --- CHANGELOG.md | 12 +++++++++++- README.md | 4 ++-- buildSrc/src/main/kotlin/Version.kt | 2 +- gradle.properties | 6 +++--- 4 files changed, 17 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a2370d..efd5275 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ ## [Unreleased] +## [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) +* Introduce Fallback + Mechanisms [#545](https://github.com/MobileNativeFoundation/Store/commit/d1e46a9d02703c798738bc5fb645344fefb90dd4) + ## [5.0.0-alpha05] (2023-03-15) * Target iOS Simulator @@ -247,7 +255,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-alpha05...HEAD +[Unreleased]: https://github.com/MobileNativeFoundation/Store/compare/v5.0.0-alpha06...HEAD + +[5.0.0-alpha06]: https://github.com/MobileNativeFoundation/Store/releases/tag/5.0.0-alpha06 [5.0.0-alpha05]: https://github.com/MobileNativeFoundation/Store/releases/tag/5.0.0-alpha05 diff --git a/README.md b/README.md index 6f7c822..e6c13bb 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ #### Android ```kotlin -implementation "org.mobilenativefoundation.store:store5:5.0.0-alpha05" +implementation "org.mobilenativefoundation.store:store5:5.0.0-alpha06" 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-alpha05") + implementation("org.mobilenativefoundation.store:store5:5.0.0-alpha06") implementation("org.jetbrains.kotlinx:atomicfu:0.18.5") } } diff --git a/buildSrc/src/main/kotlin/Version.kt b/buildSrc/src/main/kotlin/Version.kt index 2fe508c..7afc1a6 100644 --- a/buildSrc/src/main/kotlin/Version.kt +++ b/buildSrc/src/main/kotlin/Version.kt @@ -32,6 +32,6 @@ object Version { const val navigationCompose = "2.5.2" const val sqlDelight = "1.5.4" const val sqlDelightGradlePlugin = sqlDelight - const val store = "5.0.0-alpha05" + const val store = "5.0.0-alpha06" const val truth = "1.1.3" } \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index 40d77c8..ff0bf4b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -7,9 +7,9 @@ org.gradle.configureondemand=true org.gradle.jvmargs=-XX:MaxMetaspaceSize=2G # POM file -GROUP = org.mobilenativefoundation.store -VERSION_NAME = 5.0.0-SNAPSHOT -POM_PACKAGING = pom +GROUP=org.mobilenativefoundation.store +VERSION_NAME=5.0.0-alpha06 +POM_PACKAGING=pom POM_DESCRIPTION = Store5 is a Kotlin Multiplatform network-resilient repository layer POM_URL = https://github.com/MobileNativeFoundation/Store