Skip to content

Commit 905b5b4

Browse files
committed
Prepare for release 5.0.0-alpha04
Signed-off-by: Matt Ramotar <mramotar@dropbox.com>
1 parent 1fd77ac commit 905b5b4

File tree

6 files changed

+16
-8
lines changed

6 files changed

+16
-8
lines changed

.github/workflows/create_swift_package.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ name: Create Swift Package
22

33
on:
44
workflow_dispatch:
5+
push:
6+
branches: [ main ]
7+
58
jobs:
69
publish:
710
uses: touchlab/KMMBridgeGithubWorkflow/.github/workflows/faktorybuildbranches.yml@v0.6

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Changelog
22

33
## [Unreleased]
4+
5+
## [5.0.0-alpha04] (2023-02-24)
6+
47
* Introduce MutableStore
58
* Implement RealMutableStore with Store delegate
69
* Extract Store and MutableStore methods to use cases
@@ -238,7 +241,9 @@ This is a first alpha release of Store ported to RxJava 2.
238241
* The change log for Store version 1.x can be
239242
found [here](https://github.com/NYTimes/Store/blob/develop/CHANGELOG.md).
240243

241-
[Unreleased]: https://github.com/MobileNativeFoundation/Store/compare/v4.0.5...HEAD
244+
[Unreleased]: https://github.com/MobileNativeFoundation/Store/compare/v5.0.0-alpha04...HEAD
245+
246+
[5.0.0-alpha03]: https://github.com/MobileNativeFoundation/Store/releases/tag/5.0.0-alpha04
242247

243248
[5.0.0-alpha03]: https://github.com/MobileNativeFoundation/Store/releases/tag/5.0.0-alpha03
244249

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,17 @@
3535
3636
#### Android
3737
```kotlin
38-
implementation "org.mobilenativefoundation.store:store5:5.0.0-alpha03"
39-
api "org.jetbrains.kotlinx:atomicfu:0.18.5"
38+
implementation "org.mobilenativefoundation.store:store5:5.0.0-alpha04"
39+
implementation "org.jetbrains.kotlinx:atomicfu:0.18.5"
4040
```
4141

4242
#### Multiplatform (Common, JVM, Native, JS)
4343

4444
```kotlin
4545
commonMain {
4646
dependencies {
47-
implementation("org.mobilenativefoundation.store:store5:5.0.0-alpha03")
48-
api("org.jetbrains.kotlinx:atomicfu:0.18.5")
47+
implementation("org.mobilenativefoundation.store:store5:5.0.0-alpha04")
48+
implementation("org.jetbrains.kotlinx:atomicfu:0.18.5")
4949
}
5050
}
5151
```

RELEASING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Releasing
33

44
1. Change the version in top level `gradle.properties` to a non-SNAPSHOT version.
55
2. Update the `cocoapods` version in `build.gradle.kts` in `:store`.
6-
3. Modify `create_swift_package.yml` workflow to run on `store5` push.
6+
3. Modify `create_swift_package.yml` workflow.
77
* https://github.com/MobileNativeFoundation/Store/blob/e526400cdf51aa2f78b6b7e9e87f4a6845e6dcea/.github/workflows/create_swift_package.yml
88
4. Update the `CHANGELOG.md` for the impending release.
99
5. Update the `README.md` with the new version.

buildSrc/src/main/kotlin/Version.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ 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-alpha03"
35+
const val store = "5.0.0-alpha04"
3636
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ org.gradle.jvmargs=-XX:MaxMetaspaceSize=2G
88

99
# POM file
1010
GROUP = org.mobilenativefoundation.store
11-
VERSION_NAME = 5.0.0-SNAPSHOT
11+
VERSION_NAME = 5.0.0-alpha04
1212
POM_PACKAGING = pom
1313
POM_DESCRIPTION = Store5 is a Kotlin Multiplatform network-resilient repository layer
1414

0 commit comments

Comments
 (0)