diff --git a/CHANGELOG.md b/CHANGELOG.md index a4d9490..aaf2dc4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ Changelog ========= +## 1.1.3 + +Added the `lastNotificationAt` property to the `Channel` class in the `v2` package. + ## 1.1.2 The DELETE call returned an empty string body on success, which would throw an exception when being parsed as JSON. This is now converted to an empty JSON object result. diff --git a/android-client-okhttp/build.gradle b/android-client-okhttp/build.gradle index 88ccf32..eb27dc7 100644 --- a/android-client-okhttp/build.gradle +++ b/android-client-okhttp/build.gradle @@ -9,7 +9,7 @@ android { minSdkVersion 9 targetSdkVersion 26 versionCode 1 - versionName "1.1.2" + versionName "1.1.3" } buildTypes { @@ -33,7 +33,7 @@ ext { siteUrl = 'https://github.com/egeniq/libmsgs-android' gitUrl = 'https://github.com/egeniq/libmsgs-android' - libraryVersion = "1.1.2" + libraryVersion = "1.1.3" developerId = 'egeniq' developerName = 'Egeniq B.V' diff --git a/android-client/build.gradle b/android-client/build.gradle index 4aad61e..64448ae 100644 --- a/android-client/build.gradle +++ b/android-client/build.gradle @@ -7,7 +7,7 @@ android { minSdkVersion 9 targetSdkVersion 26 versionCode 1 - versionName "1.1.2" + versionName "1.1.3" } buildTypes { release { @@ -35,7 +35,7 @@ ext { siteUrl = 'https://github.com/egeniq/libmsgs-android' gitUrl = 'https://github.com/egeniq/libmsgs-android' - libraryVersion = "1.1.2" + libraryVersion = "1.1.3" developerId = 'egeniq' developerName = 'Egeniq B.V'