From 180e505f4b603d293530e0c5d29579e471693490 Mon Sep 17 00:00:00 2001 From: mparticle-automation Date: Tue, 6 Feb 2024 15:27:00 +0000 Subject: [PATCH] chore: 5.55.1 (release) ## [5.55.1](https://github.com/mParticle/mparticle-android-sdk/compare/v5.55.0...v5.55.1) (2024-02-06) ### Bug Fixes * SQDSDK-5597 - Get ad id in background thread ([#463](https://github.com/mParticle/mparticle-android-sdk/issues/463)) ([679d987](https://github.com/mParticle/mparticle-android-sdk/commit/679d9875ba56d421e5d6f2d1d9dbb5cc2189f533)) ### Updates & Maintenance * Update submodules ([d4f2512](https://github.com/mParticle/mparticle-android-sdk/commit/d4f2512daaacf1c5d33545f13aae9e369fb9f02c)) --- CHANGELOG.md | 12 ++++++++++++ README.md | 6 +++--- build.gradle | 2 +- 3 files changed, 16 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a218a22a..6478df12a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## [5.55.1](https://github.com/mParticle/mparticle-android-sdk/compare/v5.55.0...v5.55.1) (2024-02-06) + + +### Bug Fixes + +* SQDSDK-5597 - Get ad id in background thread ([#463](https://github.com/mParticle/mparticle-android-sdk/issues/463)) ([679d987](https://github.com/mParticle/mparticle-android-sdk/commit/679d9875ba56d421e5d6f2d1d9dbb5cc2189f533)) + + +### Updates & Maintenance + +* Update submodules ([d4f2512](https://github.com/mParticle/mparticle-android-sdk/commit/d4f2512daaacf1c5d33545f13aae9e369fb9f02c)) + ## [5.55.0](https://github.com/mParticle/mparticle-android-sdk/compare/v5.54.0...v5.55.0) (2023-12-13) diff --git a/README.md b/README.md index 5464f4869..1256d1c6c 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.55.0' + implementation 'com.mparticle:android-core:5.55.1' } ``` @@ -27,8 +27,8 @@ Several integrations require additional client-side add-on libraries called "kit ```groovy dependencies { implementation ( - 'com.mparticle:android-example-kit:5.55.0', - 'com.mparticle:android-another-kit:5.55.0' + 'com.mparticle:android-example-kit:5.55.1', + 'com.mparticle:android-another-kit:5.55.1' ) } ``` diff --git a/build.gradle b/build.gradle index bedde067e..c231210f3 100644 --- a/build.gradle +++ b/build.gradle @@ -35,7 +35,7 @@ subprojects { allprojects { group = 'com.mparticle' - version = '5.55.0-SNAPSHOT' + version = '5.55.1-SNAPSHOT' if (project.hasProperty('isRelease') && project.isRelease) { version = version.toString().replace("-SNAPSHOT", "") }