Skip to content

Commit

Permalink
Prepare for release 4.0.4-KT15 (#359)
Browse files Browse the repository at this point in the history
  • Loading branch information
changusmc authored Dec 8, 2021
1 parent 599194e commit 35b79b7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ Change Log

The change log for Store version 1.x can be found [here](https://github.com/NYTimes/Store/blob/develop/CHANGELOG.md).

Version 4.0.4-KT15 *(2021-12-08)
----------------------------
** Bug fixes and documentation updates

Version 4.0.3-KT15 *(2021-11-18)
----------------------------
** Update to Kotlin 1.5.31 and Coroutines 1.5.2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Artifacts are hosted on **Maven Central**.
```groovy
def store_version = "4.0.1"
//if using kotlin 1.5 (https://github.com/dropbox/Store/issues/263)
def store_version = "4.0.3-KT15"
def store_version = "4.0.4-KT15"
```

###### Add the dependency to your `build.gradle`:
Expand Down
2 changes: 1 addition & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Releasing
========

1. Change the version in top level `build.gradle` to a non-SNAPSHOT verson.
1. Change the version in top level `gradle.properties` to a non-SNAPSHOT verson.
2. Update the `CHANGELOG.md` for the impending release.
3. Update the `README.md` with the new version.
4. `git commit -am "Prepare for release X.Y.Z."` (where X.Y.Z is the new version)
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ org.gradle.jvmargs=-XX:MaxMetaspaceSize=2G
GROUP = com.dropbox.mobile.store
//e2c5cbfb31bbaa9793f430a25c750195c414ac44 was the last commit compatible with kotlin 1.4
//if a release with lower compatiblity than kotlin 1.5 is needed, branch off the above commit and cherry pick any newer changes
VERSION_NAME = 4.0.4-KT15-SNAPSHOT
VERSION_NAME = 4.0.4-KT15
POM_PACKAGING = pom
POM_DESCRIPTION = Store4 is built with Kotlin Coroutines

Expand Down

1 comment on commit 35b79b7

@handstandsam
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I just tagged the git hash for this commit as 4.0.4-KT15 as it was not tagged already. https://github.com/dropbox/Store/releases/tag/4.0.4-KT15

Differences in 4.0.3-KT15 -> 4.0.4-KT15 include: 4.0.3-KT15...4.0.4-KT15

  • No changes to the Store source code, only the sample app to move from moshi -> kotlinx serialization.

Please sign in to comment.