From fe71aa21298e4ecc6586442a3f1f0a82e92eb2e1 Mon Sep 17 00:00:00 2001 From: mparticle-automation Date: Thu, 21 Jul 2022 21:39:49 +0000 Subject: [PATCH] chore(release): 5.43.0 ## [5.43.0](https://github.com/mParticle/mparticle-android-sdk/compare/v5.42.0...v5.43.0) (2022-07-21) ### Features * update MParticleUser.incrementUserAttribute to accept Number ([#188](https://github.com/mParticle/mparticle-android-sdk/issues/188)) ([670bdd6](https://github.com/mParticle/mparticle-android-sdk/commit/670bdd60084b7b1fa2652d4bdb4f492f928f91a9)) --- CHANGELOG.md | 7 +++++++ README.md | 6 +++--- build.gradle | 2 +- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9573b8518..4f0e4afda 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [5.43.0](https://github.com/mParticle/mparticle-android-sdk/compare/v5.42.0...v5.43.0) (2022-07-21) + + +### Features + +* update MParticleUser.incrementUserAttribute to accept Number ([#188](https://github.com/mParticle/mparticle-android-sdk/issues/188)) ([670bdd6](https://github.com/mParticle/mparticle-android-sdk/commit/670bdd60084b7b1fa2652d4bdb4f492f928f91a9)) + ## [5.42.0](https://github.com/mParticle/mparticle-android-sdk/compare/v5.41.3...v5.42.0) (2022-07-18) diff --git a/README.md b/README.md index bc838ad6f..ac46c4d68 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ You can grab the Core SDK via Maven Central. Please see the badge above and foll ```groovy dependencies { - implementation 'com.mparticle:android-core:5.42.0' + implementation 'com.mparticle:android-core:5.43.0' } ``` @@ -27,8 +27,8 @@ Several integrations require additional client-side add-on libraries called "kit ```groovy dependencies { implementation ( - 'com.mparticle:android-example-kit:5.42.0', - 'com.mparticle:android-another-kit:5.42.0' + 'com.mparticle:android-example-kit:5.43.0', + 'com.mparticle:android-another-kit:5.43.0' ) } ``` diff --git a/build.gradle b/build.gradle index a9ed90e5e..d558c43e9 100644 --- a/build.gradle +++ b/build.gradle @@ -35,7 +35,7 @@ subprojects { allprojects { group = 'com.mparticle' - version = '5.42.0-SNAPSHOT' + version = '5.43.0-SNAPSHOT' if (project.hasProperty('isRelease') && project.isRelease) { version = version.toString().replace("-SNAPSHOT", "") }