From 1de98b8c5f9c448ba2d9b139c2ad85bd0f637b38 Mon Sep 17 00:00:00 2001 From: Sam Dozor Date: Thu, 6 Apr 2017 15:22:48 -0700 Subject: [PATCH] Update version to 4.11.2 --- README.md | 6 +++--- build.gradle | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4af5c2334..5a90d4577 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ You can grab the Core SDK via Maven Central. Please reference the badge above an ```groovy dependencies { - compile 'com.mparticle:android-core:4.11.1' + compile 'com.mparticle:android-core:4.11.2' } ``` @@ -27,8 +27,8 @@ Several integrations require additional client-side add-on libraries called "kit ```groovy dependencies { compile ( - 'com.mparticle:android-example-kit:4.11.1', - 'com.mparticle:android-another-kit:4.11.1', + 'com.mparticle:android-example-kit:4.11.2', + 'com.mparticle:android-another-kit:4.11.2', ) } ``` diff --git a/build.gradle b/build.gradle index 6b212f635..3bc58139f 100644 --- a/build.gradle +++ b/build.gradle @@ -9,7 +9,7 @@ buildscript { allprojects { group = 'com.mparticle' - version = '4.11.1-SNAPSHOT' + version = '4.11.2-SNAPSHOT' if (project.hasProperty('isRelease') && project.isRelease) { version = version.toString().replace("-SNAPSHOT", "") }