diff --git a/CHANGELOG.md b/CHANGELOG.md index 3111393..c78585c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,19 @@ Change Log ========== -Version 1.1.0 *(2015-07-05)* +Version 1.1.5 *(2018-06-23)* ---------------------------- - * Fix: Last update time wasn't saved which results in too many updates - * New: Bi-weekly updates in UpdatePolicy + * Improved error handling on error while reading json file + +Version 1.1.4 *(2018-05-17)* +---------------------------- + * Improved error handling on missing/erroneous json file Version 1.1.3 *(2018-05-05)* ---------------------------- * Switched from jackson to gson. This reduces the method count by ~4500 methods. -Version 1.1.4 *(2018-05-17)* +Version 1.1.0 *(2015-07-05)* ---------------------------- - * Improved error handling on missing/erroneous json file \ No newline at end of file + * Fix: Last update time wasn't saved which results in too many updates + * New: Bi-weekly updates in UpdatePolicy diff --git a/README.md b/README.md index 6310e15..84eada1 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ A Google GCM/Amazon SNS alternative using pull instead of push. ## Download Gradle: ```groovy -implementation ('com.github.kaiwinter:android-remote-notifications:1.1.4@aar') { +implementation ('com.github.kaiwinter:android-remote-notifications:1.1.5@aar') { transitive = true } ``` diff --git a/android-remote-notifications/build.gradle b/android-remote-notifications/build.gradle index 3398824..3f5b5aa 100644 --- a/android-remote-notifications/build.gradle +++ b/android-remote-notifications/build.gradle @@ -6,7 +6,7 @@ android { defaultConfig { minSdkVersion 9 targetSdkVersion 26 - versionCode 3 + versionCode 4 versionName version } buildTypes { diff --git a/android-remote-notifications/gradle.properties b/android-remote-notifications/gradle.properties index a15aa90..74e62f9 100644 --- a/android-remote-notifications/gradle.properties +++ b/android-remote-notifications/gradle.properties @@ -1 +1 @@ -version=1.1.5-SNAPSHOT +version=1.1.5 diff --git a/example/build.gradle b/example/build.gradle index 79483c4..ad8b192 100644 --- a/example/build.gradle +++ b/example/build.gradle @@ -8,7 +8,7 @@ android { applicationId "com.github.kaiwinter.androidnotificationlib.example" minSdkVersion 9 targetSdkVersion 26 - versionCode 3 + versionCode 4 versionName "1.0" }