version bump to 0.8.2

iNPUTmice created

Change summary

CHANGELOG.md                                                          | 8 
build.gradle                                                          | 4 
src/main/java/eu/siacs/conversations/generator/AbstractGenerator.java | 2 
3 files changed, 11 insertions(+), 3 deletions(-)

Detailed changes

CHANGELOG.md 🔗

@@ -1,5 +1,13 @@
 ###Changelog
 
+####Version 0.8.2
+* Share contacts via QR codes or NFC
+* Slightly improved UI
+* minor bug fixes
+
+####Version 0.8.1
+* minor bug fixes
+
 ####Version 0.8
 * Download HTTP images
 * Show avatars in MUC tiles

build.gradle 🔗

@@ -45,8 +45,8 @@ android {
 	defaultConfig {
 		minSdkVersion 14
 		targetSdkVersion 19
-		versionCode 33
-		versionName "0.8.1"
+		versionCode 34
+		versionName "0.8.2"
 	}
 
 	compileOptions {

src/main/java/eu/siacs/conversations/generator/AbstractGenerator.java 🔗

@@ -20,7 +20,7 @@ public abstract class AbstractGenerator {
 			"http://jabber.org/protocol/disco#info",
 			"urn:xmpp:avatar:metadata+notify",
 			"urn:xmpp:ping"};
-	public final String IDENTITY_NAME = "Conversations 0.8.1";
+	public final String IDENTITY_NAME = "Conversations 0.8.2";
 	public final String IDENTITY_TYPE = "phone";
 
 	protected XmppConnectionService mXmppConnectionService;