File tree Expand file tree Collapse file tree 4 files changed +17
-7
lines changed Expand file tree Collapse file tree 4 files changed +17
-7
lines changed Original file line number Diff line number Diff line change 22
33## [ Unreleased]
44
5+ ## [ 5.0.0-alpha06] (2023-05-08)
6+
7+ * Separate MutableStoreBuilder from
8+ StoreBuilder [ #542 ] ( https://github.com/MobileNativeFoundation/Store/commit/e050a15afc21c22ffea10a6a7d5f1b436ee34a6a )
9+ * Support Rx2 [ #531 ] ( https://github.com/MobileNativeFoundation/Store/commit/7d73f08cc07294d00b176325af792b51874dfeff )
10+ * Introduce Fallback
11+ Mechanisms [ #545 ] ( https://github.com/MobileNativeFoundation/Store/commit/d1e46a9d02703c798738bc5fb645344fefb90dd4 )
12+
513## [ 5.0.0-alpha05] (2023-03-15)
614
715* Target iOS Simulator
@@ -247,7 +255,9 @@ This is a first alpha release of Store ported to RxJava 2.
247255* The change log for Store version 1.x can be
248256 found [ here] ( https://github.com/NYTimes/Store/blob/develop/CHANGELOG.md ) .
249257
250- [ Unreleased ] : https://github.com/MobileNativeFoundation/Store/compare/v5.0.0-alpha05...HEAD
258+ [ Unreleased ] : https://github.com/MobileNativeFoundation/Store/compare/v5.0.0-alpha06...HEAD
259+
260+ [ 5.0.0-alpha06 ] : https://github.com/MobileNativeFoundation/Store/releases/tag/5.0.0-alpha06
251261
252262[ 5.0.0-alpha05 ] : https://github.com/MobileNativeFoundation/Store/releases/tag/5.0.0-alpha05
253263
Original file line number Diff line number Diff line change 3737
3838#### Android
3939``` kotlin
40- implementation " org.mobilenativefoundation.store:store5:5.0.0-alpha05 "
40+ implementation " org.mobilenativefoundation.store:store5:5.0.0-alpha06 "
4141implementation " org.jetbrains.kotlinx:atomicfu:0.18.5"
4242```
4343
@@ -46,7 +46,7 @@ implementation "org.jetbrains.kotlinx:atomicfu:0.18.5"
4646``` kotlin
4747commonMain {
4848 dependencies {
49- implementation(" org.mobilenativefoundation.store:store5:5.0.0-alpha05 " )
49+ implementation(" org.mobilenativefoundation.store:store5:5.0.0-alpha06 " )
5050 implementation(" org.jetbrains.kotlinx:atomicfu:0.18.5" )
5151 }
5252}
Original file line number Diff line number Diff line change @@ -32,6 +32,6 @@ object Version {
3232 const val navigationCompose = " 2.5.2"
3333 const val sqlDelight = " 1.5.4"
3434 const val sqlDelightGradlePlugin = sqlDelight
35- const val store = " 5.0.0-alpha05 "
35+ const val store = " 5.0.0-alpha06 "
3636 const val truth = " 1.1.3"
3737}
Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ org.gradle.configureondemand=true
77org.gradle.jvmargs =-XX:MaxMetaspaceSize=2G
88
99# POM file
10- GROUP = org.mobilenativefoundation.store
11- VERSION_NAME = 5.0.0-SNAPSHOT
12- POM_PACKAGING = pom
10+ GROUP = org.mobilenativefoundation.store
11+ VERSION_NAME = 5.0.0-alpha06
12+ POM_PACKAGING = pom
1313POM_DESCRIPTION = Store5 is a Kotlin Multiplatform network-resilient repository layer
1414
1515POM_URL = https://github.com/MobileNativeFoundation/Store
You can’t perform that action at this time.
0 commit comments