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 2
2
3
3
## [ Unreleased]
4
4
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
+
5
13
## [ 5.0.0-alpha05] (2023-03-15)
6
14
7
15
* Target iOS Simulator
@@ -247,7 +255,9 @@ This is a first alpha release of Store ported to RxJava 2.
247
255
* The change log for Store version 1.x can be
248
256
found [ here] ( https://github.com/NYTimes/Store/blob/develop/CHANGELOG.md ) .
249
257
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
251
261
252
262
[ 5.0.0-alpha05 ] : https://github.com/MobileNativeFoundation/Store/releases/tag/5.0.0-alpha05
253
263
Original file line number Diff line number Diff line change 37
37
38
38
#### Android
39
39
``` kotlin
40
- implementation " org.mobilenativefoundation.store:store5:5.0.0-alpha05 "
40
+ implementation " org.mobilenativefoundation.store:store5:5.0.0-alpha06 "
41
41
implementation " org.jetbrains.kotlinx:atomicfu:0.18.5"
42
42
```
43
43
@@ -46,7 +46,7 @@ implementation "org.jetbrains.kotlinx:atomicfu:0.18.5"
46
46
``` kotlin
47
47
commonMain {
48
48
dependencies {
49
- implementation(" org.mobilenativefoundation.store:store5:5.0.0-alpha05 " )
49
+ implementation(" org.mobilenativefoundation.store:store5:5.0.0-alpha06 " )
50
50
implementation(" org.jetbrains.kotlinx:atomicfu:0.18.5" )
51
51
}
52
52
}
Original file line number Diff line number Diff line change @@ -32,6 +32,6 @@ object Version {
32
32
const val navigationCompose = " 2.5.2"
33
33
const val sqlDelight = " 1.5.4"
34
34
const val sqlDelightGradlePlugin = sqlDelight
35
- const val store = " 5.0.0-alpha05 "
35
+ const val store = " 5.0.0-alpha06 "
36
36
const val truth = " 1.1.3"
37
37
}
Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ org.gradle.configureondemand=true
7
7
org.gradle.jvmargs =-XX:MaxMetaspaceSize=2G
8
8
9
9
# 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
13
13
POM_DESCRIPTION = Store5 is a Kotlin Multiplatform network-resilient repository layer
14
14
15
15
POM_URL = https://github.com/MobileNativeFoundation/Store
You can’t perform that action at this time.
0 commit comments