diff --git a/CHANGELOG.md b/CHANGELOG.md index dc82390a..c34dacbf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ Change Log ========== +Version 1.0.3 *(2017-02-14)* +---------------------------- + + * New: Adds a maximum content length threshold, beyond which bodies are truncated. + * New: Adds a data retention length property and cleanup task. + * New: Adds a clear action to the notification. + * Fix: Mitigates against CursorWindow blowout when transactions are large. + Version 1.0.2 *(2017-02-10)* ---------------------------- @@ -14,7 +22,6 @@ Version 1.0.1 *(2017-02-09)* * New: Adds a transaction count to the notification. * Fix: Limits the size of the static transaction buffer correctly. - Version 1.0.0 *(2017-02-07)* ---------------------------- diff --git a/README.md b/README.md index b47869cc..fa48a354 100644 --- a/README.md +++ b/README.md @@ -22,8 +22,8 @@ Add the dependency in your `build.gradle` file. Add it alongside the `no-op` var ```gradle dependencies { - debugCompile 'com.readystatesoftware.chuck:library:1.0.2' - releaseCompile 'com.readystatesoftware.chuck:library-no-op:1.0.2' + debugCompile 'com.readystatesoftware.chuck:library:1.0.3' + releaseCompile 'com.readystatesoftware.chuck:library-no-op:1.0.3' } ``` diff --git a/gradle.properties b/gradle.properties index 282e8db5..25831271 100644 --- a/gradle.properties +++ b/gradle.properties @@ -16,8 +16,8 @@ org.gradle.jvmargs=-Xmx1536m # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects # org.gradle.parallel=true -VERSION_NAME=1.0.2 -VERSION_CODE=102 +VERSION_NAME=1.0.3 +VERSION_CODE=103 GROUP=com.readystatesoftware.chuck POM_DESCRIPTION=Android in-app HTTP inspector