Skip to content

Commit

Permalink
Prepare for release 5.0.0-alpha04
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Ramotar <[email protected]>
  • Loading branch information
matt-ramotar committed Feb 25, 2023
1 parent 1fd77ac commit 905b5b4
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 8 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/create_swift_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: Create Swift Package

on:
workflow_dispatch:
push:
branches: [ main ]

jobs:
publish:
uses: touchlab/KMMBridgeGithubWorkflow/.github/workflows/[email protected]
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Changelog

## [Unreleased]

## [5.0.0-alpha04] (2023-02-24)

* Introduce MutableStore
* Implement RealMutableStore with Store delegate
* Extract Store and MutableStore methods to use cases
Expand Down Expand Up @@ -238,7 +241,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/v4.0.5...HEAD
[Unreleased]: https://github.com/MobileNativeFoundation/Store/compare/v5.0.0-alpha04...HEAD

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

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

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,17 @@
#### Android
```kotlin
implementation "org.mobilenativefoundation.store:store5:5.0.0-alpha03"
api "org.jetbrains.kotlinx:atomicfu:0.18.5"
implementation "org.mobilenativefoundation.store:store5:5.0.0-alpha04"
implementation "org.jetbrains.kotlinx:atomicfu:0.18.5"
```

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

```kotlin
commonMain {
dependencies {
implementation("org.mobilenativefoundation.store:store5:5.0.0-alpha03")
api("org.jetbrains.kotlinx:atomicfu:0.18.5")
implementation("org.mobilenativefoundation.store:store5:5.0.0-alpha04")
implementation("org.jetbrains.kotlinx:atomicfu:0.18.5")
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Releasing

1. Change the version in top level `gradle.properties` to a non-SNAPSHOT version.
2. Update the `cocoapods` version in `build.gradle.kts` in `:store`.
3. Modify `create_swift_package.yml` workflow to run on `store5` push.
3. Modify `create_swift_package.yml` workflow.
* https://github.com/MobileNativeFoundation/Store/blob/e526400cdf51aa2f78b6b7e9e87f4a6845e6dcea/.github/workflows/create_swift_package.yml
4. Update the `CHANGELOG.md` for the impending release.
5. Update the `README.md` with the new version.
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Version.kt
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@ object Version {
const val navigationCompose = "2.5.2"
const val sqlDelight = "1.5.4"
const val sqlDelightGradlePlugin = sqlDelight
const val store = "5.0.0-alpha03"
const val store = "5.0.0-alpha04"
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ org.gradle.jvmargs=-XX:MaxMetaspaceSize=2G

# POM file
GROUP = org.mobilenativefoundation.store
VERSION_NAME = 5.0.0-SNAPSHOT
VERSION_NAME = 5.0.0-alpha04
POM_PACKAGING = pom
POM_DESCRIPTION = Store5 is a Kotlin Multiplatform network-resilient repository layer

Expand Down

0 comments on commit 905b5b4

Please sign in to comment.