From 14588db78b5c105b16b78c056198d8e6266d8e9f Mon Sep 17 00:00:00 2001 From: mparticle-automation Date: Thu, 12 Dec 2024 22:32:31 +0000 Subject: [PATCH] chore: 5.58.4 (release) ## [5.58.4](https://github.com/mParticle/mparticle-android-sdk/compare/v5.58.3...v5.58.4) (2024-12-12) ### Updates & Maintenance * Fix release action trying to push to old internal repo ([09101f2](https://github.com/mParticle/mparticle-android-sdk/commit/09101f2bd6e529b857bfb66c8196f7754d0e26e6)) * Update submodules ([36a6396](https://github.com/mParticle/mparticle-android-sdk/commit/36a6396a3f91293d74b77318ca06e3e44cd8c6ad)) --- CHANGELOG.md | 8 ++++++++ README.md | 6 +++--- build.gradle | 2 +- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 458f328d2..94ec468a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## [5.58.4](https://github.com/mParticle/mparticle-android-sdk/compare/v5.58.3...v5.58.4) (2024-12-12) + + +### Updates & Maintenance + +* Fix release action trying to push to old internal repo ([09101f2](https://github.com/mParticle/mparticle-android-sdk/commit/09101f2bd6e529b857bfb66c8196f7754d0e26e6)) +* Update submodules ([36a6396](https://github.com/mParticle/mparticle-android-sdk/commit/36a6396a3f91293d74b77318ca06e3e44cd8c6ad)) + ## [5.58.3](https://github.com/mParticle/mparticle-android-sdk/compare/v5.58.2...v5.58.3) (2024-10-24) diff --git a/README.md b/README.md index 95bd3c633..5b1858e5f 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.58.3' + implementation 'com.mparticle:android-core:5.58.4' } ``` @@ -27,8 +27,8 @@ Several integrations require additional client-side add-on libraries called "kit ```groovy dependencies { implementation ( - 'com.mparticle:android-example-kit:5.58.3', - 'com.mparticle:android-another-kit:5.58.3' + 'com.mparticle:android-example-kit:5.58.4', + 'com.mparticle:android-another-kit:5.58.4' ) } ``` diff --git a/build.gradle b/build.gradle index 785237bef..4227d5ad5 100644 --- a/build.gradle +++ b/build.gradle @@ -35,7 +35,7 @@ subprojects { allprojects { group = 'com.mparticle' - version = '5.58.3-SNAPSHOT' + version = '5.58.4-SNAPSHOT' if (project.hasProperty('isRelease') && project.isRelease) { version = version.toString().replace("-SNAPSHOT", "") }