Prepare for release 3.1.0.
This commit is contained in:
parent
b8df99c4b8
commit
6ea6f30a6a
3 changed files with 22 additions and 4 deletions
18
CHANGELOG.md
18
CHANGELOG.md
|
@ -3,6 +3,24 @@ Change Log
|
|||
|
||||
The change log for Store version 1.x can be found [here](https://github.com/NYTimes/Store/blob/develop/CHANGELOG.md).
|
||||
|
||||
|
||||
Version 3.1.0 *(2018-06-07)*
|
||||
----------------------------
|
||||
|
||||
**New Features**
|
||||
|
||||
* (#319) Store can now be used in Java (non-Android) projects
|
||||
* (#338) Room integration for Store
|
||||
|
||||
**Bug Fixes and Stability Improvements**
|
||||
|
||||
* (#315) Add missing reading of expire-after-policy when creating a NoopPersister
|
||||
* (#311) Update Kotlin & AGP versions
|
||||
* (#328) Fix memory policy default size
|
||||
* (#329) Adding docs to README for setting 1.8 compatibility
|
||||
* (#273) Adds comments to the sample app
|
||||
* (#336) Fixes errors in README
|
||||
|
||||
Version 3.0.1 *(2018-03-20)*
|
||||
----------------------------
|
||||
|
||||
|
|
|
@ -300,7 +300,7 @@ public class SampleStore extends RealStore<String, BarCode> {
|
|||
|
||||
### Artifacts
|
||||
|
||||
**CurrentVersion = 3.0.1**
|
||||
**CurrentVersion = 3.1.0**
|
||||
|
||||
+ **Cache** Cache extracted from Guava (keeps method count to a minimum)
|
||||
|
||||
|
|
|
@ -23,12 +23,12 @@ buildscript {
|
|||
]
|
||||
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:3.2.0-alpha15'
|
||||
classpath 'com.android.tools.build:gradle:3.2.0-alpha16'
|
||||
classpath 'com.google.gms:google-services:3.0.0'
|
||||
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.5.6'
|
||||
classpath 'net.ltgt.gradle:gradle-errorprone-plugin:0.0.11'
|
||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$rootProject.ext.versions.kotlin"
|
||||
classpath 'org.jetbrains.dokka:dokka-gradle-plugin:0.9.14'
|
||||
classpath 'org.jetbrains.dokka:dokka-gradle-plugin:0.9.16'
|
||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||||
}
|
||||
}
|
||||
|
@ -56,7 +56,7 @@ allprojects {
|
|||
ext {
|
||||
// POM file
|
||||
GROUP = "com.nytimes.android"
|
||||
VERSION_NAME = "3.1.0-SNAPSHOT"
|
||||
VERSION_NAME = "3.1.0"
|
||||
POM_PACKAGING = "pom"
|
||||
POM_DESCRIPTION = "Store3 is built with RxJava2"
|
||||
|
||||
|
|
Loading…
Reference in a new issue