Release 5.0.0-alpha06 (#552)
Signed-off-by: matt-ramotar <mramotar@dropbox.com>
This commit is contained in:
parent
c6a87f9ed1
commit
c10f355d24
4 changed files with 17 additions and 7 deletions
12
CHANGELOG.md
12
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
|
||||
|
||||
|
|
|
@ -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")
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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"
|
||||
}
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue