From 6e3be0a4588515e598032dde075c94462e254d72 Mon Sep 17 00:00:00 2001 From: "christian.rowlands" Date: Thu, 29 Apr 2021 15:56:55 -0400 Subject: [PATCH] Updated the version and the README for the release --- MqttLibrary/build.gradle | 4 ++-- README.md | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/MqttLibrary/build.gradle b/MqttLibrary/build.gradle index e8e6f19..47ba39c 100644 --- a/MqttLibrary/build.gradle +++ b/MqttLibrary/build.gradle @@ -16,7 +16,7 @@ plugins { } group 'com.craxiom' -version '0.3.0-SNAPSHOT' +version '0.2.1' android { compileSdkVersion 29 @@ -25,7 +25,7 @@ android { defaultConfig { minSdkVersion 24 targetSdkVersion 29 - versionCode 2 + versionCode 3 versionName version setProperty("archivesBaseName", "$applicationName-$versionName") diff --git a/README.md b/README.md index 28935ac..f777b73 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,9 @@ It is important to note that the pieces provided in the library cannot stand on ## Change log +##### [0.2.1](https://github.com/christianrowlands/android-mqtt-connection-lib/releases/tag/v0.2.1) - 2021-04-30 + * Added some additional protections against concurrent MQTT connections. + ##### [0.2.0](https://github.com/christianrowlands/android-mqtt-connection-lib/releases/tag/v0.2.0) - 2021-04-28 * Switched out the Eclipse Paho MQTT Client for HiveMQ to improve stability and error scenario handling.