Skip to content

Commit

Permalink
Prepare for release 0.13.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielittner committed Jun 13, 2022
1 parent 1387be5 commit d926eef
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -47,7 +47,7 @@ class MyStateMachine : FlowReduxStateMachine<State, Action>(LoadingState){
// observes the given flow as long as state is ContentState.
// Once state is changed to another state the flow will automatically
// stop emitting.
MutateState<ContentState, State> {
MutateState<ContentState, State> {
copy( items = this.items + Item("New item $value"))
}
}
Expand Down Expand Up @@ -103,14 +103,14 @@ There are two artifacts that you can include as dependency:

### Multiplatform
```groovy
implementation 'com.freeletics.flowredux:flowredux:0.12.0'
implementation 'com.freeletics.flowredux:compose:0.12.0'
implementation 'com.freeletics.flowredux:flowredux:0.13.0'
implementation 'com.freeletics.flowredux:compose:0.13.0'
```

### JVM / Android only
```groovy
implementation 'com.freeletics.flowredux:flowredux-jvm:0.12.0'
implementation 'com.freeletics.flowredux:compose:0.12.0'
implementation 'com.freeletics.flowredux:flowredux-jvm:0.13.0'
implementation 'com.freeletics.flowredux:compose:0.13.0'
```

### JavaScript
Expand Down
11 changes: 11 additions & 0 deletions RELEASING.md
@@ -0,0 +1,11 @@
Releasing
========

1. Change the version in `gradle.properties` to a non-SNAPSHOT version.
2. Update the `README.md` with the new version.
3. `git commit -am "Prepare for release X.Y.Z."` (where X.Y.Z is the new version)
4. `git tag -a X.Y.X -m "Version X.Y.Z"` (where X.Y.Z is the new version)
5. Update the `gradle.properties` to the next SNAPSHOT version.
6. `git commit -am "Prepare next development version."`
7. `git push && git push --tags`
8. Create a Github Release
2 changes: 1 addition & 1 deletion gradle.properties
Expand Up @@ -18,7 +18,7 @@ SONATYPE_HOST=DEFAULT
RELEASE_SIGNING_ENABLED=true

GROUP=com.freeletics.flowredux
VERSION_NAME=0.12.1-SNAPSHOT
VERSION_NAME=0.13.0

POM_INCEPTION_YEAR=2019

Expand Down

0 comments on commit d926eef

Please sign in to comment.