Skip to content

Commit c10f355

Browse files
authored
Release 5.0.0-alpha06 (#552)
Signed-off-by: matt-ramotar <mramotar@dropbox.com>
1 parent c6a87f9 commit c10f355

File tree

4 files changed

+17
-7
lines changed

4 files changed

+17
-7
lines changed

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
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"
4141
implementation "org.jetbrains.kotlinx:atomicfu:0.18.5"
4242
```
4343

@@ -46,7 +46,7 @@ implementation "org.jetbrains.kotlinx:atomicfu:0.18.5"
4646
```kotlin
4747
commonMain {
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
}

buildSrc/src/main/kotlin/Version.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ org.gradle.configureondemand=true
77
org.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
1313
POM_DESCRIPTION = Store5 is a Kotlin Multiplatform network-resilient repository layer
1414

1515
POM_URL = https://github.com/MobileNativeFoundation/Store

0 commit comments

Comments
 (0)