Prepare for release 4.0.2-KT15 (#274)

* Prepare for release 4.0.2-KT15

* Update build.gradle

Co-authored-by: miken <miken@dropbox.com>
This commit is contained in:
Mike Nakhimovich 2021-05-17 12:48:14 -04:00 committed by GitHub
parent 86ab7a5251
commit a21dacf5b9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 2 deletions

View file

@ -1,8 +1,18 @@
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.2-KT15 *(2021-05-06)
----------------------------
**Kotlin 1.5 introduced breaking changes in the experimental Duration apis we used**
**4.0.2-KT15 is a duplicate of 4.0.1 but compiled for kotlin 1.5**
**Version 4.0.1 is the last version compatible with Kotlin 1.4**
* Fire off kotlin 1.5 compatible snapshot (#273)
Version 4.0.1 *(2021-05-06)*
----------------------------
* Fixes issues when upgrading to kotlin 1.5 (Deprecated duration api)

View file

@ -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.2-KT15-SNAPSHOT"
def store_version = "4.0.2-KT15"
```
###### Add the dependency to your `build.gradle`:

View file

@ -52,7 +52,9 @@ allprojects {
ext {
// POM file
GROUP = "com.dropbox.mobile.store"
VERSION_NAME = "4.0.2-KT15-SNAPSHOT"
//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.2-KT15"
POM_PACKAGING = "pom"
POM_DESCRIPTION = "Store4 is built with Kotlin Coroutines"