From 40f6597dc7ed0068691966e098ced4ff98bc7529 Mon Sep 17 00:00:00 2001 From: Will Passidomo Date: Mon, 14 Aug 2017 16:06:11 -0400 Subject: [PATCH] Update version to 4.16.1 --- README.md | 6 +++--- build.gradle | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c48c3185d..61852f2d4 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.15.0' + compile 'com.mparticle:android-core:4.16.1' } ``` @@ -27,8 +27,8 @@ Several integrations require additional client-side add-on libraries called "kit ```groovy dependencies { compile ( - 'com.mparticle:android-example-kit:4.16.0', - 'com.mparticle:android-another-kit:4.16.0' + 'com.mparticle:android-example-kit:4.16.1', + 'com.mparticle:android-another-kit:4.16.1' ) } ``` diff --git a/build.gradle b/build.gradle index d5aa761e6..bbb680ad7 100644 --- a/build.gradle +++ b/build.gradle @@ -9,7 +9,7 @@ buildscript { allprojects { group = 'com.mparticle' - version = '4.16.0-SNAPSHOT' + version = '4.16.1-SNAPSHOT' if (project.hasProperty('isRelease') && project.isRelease) { version = version.toString().replace("-SNAPSHOT", "") }