diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a97a51..67058a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,22 @@ Change Log ========== -Version 2.0.0 *(2017-02-13)* + +Version 2.0.1 *(2017-02-28)* ---------------------------- +**New Features** +* (#137) FileSystemRecordPersister +* (#138) Introduce RecordPersisterFactory +* (#140) Add FileSystemRecordPersisterFactory + +**Bug Fixes and Stability Improvements** +* (#134) Do not depend on lint task if it does not exist. +* (#133) Remove StandardCharsets usage to work on API < 19 +* (#136) add KeyParseFunc for times when parser needs input val +* (#141) fix clear one barcode + +Version 2.0.0 *(2017-02-13)* +---------------------------- **Breaking Changes** - See Wiki/Closed PRs for more detail diff --git a/README.md b/README.md index 2dfe2ab..7f07870 100644 --- a/README.md +++ b/README.md @@ -282,7 +282,7 @@ public class SampleStore extends RealStore { ### Artifacts Note: Release is in Sync with current state of master (not develop) branch -**CurrentVersion = 2.0.0** +**CurrentVersion = 2.0.1** + **Cache** Cache extracted from Guava (keeps method count to a minimum) diff --git a/build.gradle b/build.gradle index 2f71cfa..1f72652 100644 --- a/build.gradle +++ b/build.gradle @@ -54,7 +54,7 @@ ext { // POM file GROUP = "com.nytimes.android" - VERSION_NAME = "2.0.1-SNAPSHOT" + VERSION_NAME = "2.0.1" POM_PACKAGING = "pom" POM_DESCRIPTION = "Store"