From 46aa6f4ec5df61811ea1393e29ff4d5fccaabf41 Mon Sep 17 00:00:00 2001 From: mparticle-automation Date: Thu, 3 Nov 2022 22:43:50 +0000 Subject: [PATCH] chore: 5.48.0 (release) ## [5.48.0](https://github.com/mParticle/mparticle-android-sdk/compare/v5.47.4...v5.48.0) (2022-11-03) ### Features * Investigate dependabot automerge Mockito library upgrade. ([#264](https://github.com/mParticle/mparticle-android-sdk/issues/264)) ([982bf29](https://github.com/mParticle/mparticle-android-sdk/commit/982bf299283608f5c7987bea28d5b9da2844d1d5)) ### Bug Fixes * mParticle crashing on push notifications for android 12 and above ([#266](https://github.com/mParticle/mparticle-android-sdk/issues/266)) ([88ddb94](https://github.com/mParticle/mparticle-android-sdk/commit/88ddb9415d5f240482540c0c0b3e26b818838d96)) ### Updates & Maintenance * Update submodules ([4ffafcf](https://github.com/mParticle/mparticle-android-sdk/commit/4ffafcf4fa1c94811fd4f498bb3c0237363f61a8)) --- CHANGELOG.md | 17 +++++++++++++++++ README.md | 6 +++--- build.gradle | 2 +- 3 files changed, 21 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index afbe2c685..418247792 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +## [5.48.0](https://github.com/mParticle/mparticle-android-sdk/compare/v5.47.4...v5.48.0) (2022-11-03) + + +### Features + +* Investigate dependabot automerge Mockito library upgrade. ([#264](https://github.com/mParticle/mparticle-android-sdk/issues/264)) ([982bf29](https://github.com/mParticle/mparticle-android-sdk/commit/982bf299283608f5c7987bea28d5b9da2844d1d5)) + + +### Bug Fixes + +* mParticle crashing on push notifications for android 12 and above ([#266](https://github.com/mParticle/mparticle-android-sdk/issues/266)) ([88ddb94](https://github.com/mParticle/mparticle-android-sdk/commit/88ddb9415d5f240482540c0c0b3e26b818838d96)) + + +### Updates & Maintenance + +* Update submodules ([4ffafcf](https://github.com/mParticle/mparticle-android-sdk/commit/4ffafcf4fa1c94811fd4f498bb3c0237363f61a8)) + ## [5.47.4](https://github.com/mParticle/mparticle-android-sdk/compare/v5.47.3...v5.47.4) (2022-11-02) diff --git a/README.md b/README.md index fe7b3aea2..374507dff 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.47.4' + implementation 'com.mparticle:android-core:5.48.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.47.4', - 'com.mparticle:android-another-kit:5.47.4' + 'com.mparticle:android-example-kit:5.48.0', + 'com.mparticle:android-another-kit:5.48.0' ) } ``` diff --git a/build.gradle b/build.gradle index b6049af31..a9795fb2e 100644 --- a/build.gradle +++ b/build.gradle @@ -35,7 +35,7 @@ subprojects { allprojects { group = 'com.mparticle' - version = '5.47.4-SNAPSHOT' + version = '5.48.0-SNAPSHOT' if (project.hasProperty('isRelease') && project.isRelease) { version = version.toString().replace("-SNAPSHOT", "") }