From 05c5331f5261bab0c976ee5cfcab44b5974ba923 Mon Sep 17 00:00:00 2001 From: mparticle-automation Date: Fri, 24 Jan 2025 21:15:35 +0000 Subject: [PATCH] chore: 5.58.5 (release) ## [5.58.5](https://github.com/mParticle/mparticle-android-sdk/compare/v5.58.4...v5.58.5) (2025-01-24) ### Updates & Maintenance * Add issue autorespond and close workflow ([#526](https://github.com/mParticle/mparticle-android-sdk/issues/526)) ([28ccb97](https://github.com/mParticle/mparticle-android-sdk/commit/28ccb97f1dc709d25ed686dae241f8462c62b9cf)) * Update cross-platform-tests.yml ([#530](https://github.com/mParticle/mparticle-android-sdk/issues/530)) ([0924e88](https://github.com/mParticle/mparticle-android-sdk/commit/0924e88331d3f92fb7bdd774fd33e162c4fc0aa2)) * update emulator version tag ([#537](https://github.com/mParticle/mparticle-android-sdk/issues/537)) ([4f2fea6](https://github.com/mParticle/mparticle-android-sdk/commit/4f2fea6290e497e32d6045fb2d1d32f44538f1f2)) * Update submodules ([ab53cb1](https://github.com/mParticle/mparticle-android-sdk/commit/ab53cb1f54e5251980045b8f754fca14966d95fa)) --- CHANGELOG.md | 10 ++++++++++ README.md | 6 +++--- build.gradle | 2 +- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 94ec468a8..891ac31b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## [5.58.5](https://github.com/mParticle/mparticle-android-sdk/compare/v5.58.4...v5.58.5) (2025-01-24) + + +### Updates & Maintenance + +* Add issue autorespond and close workflow ([#526](https://github.com/mParticle/mparticle-android-sdk/issues/526)) ([28ccb97](https://github.com/mParticle/mparticle-android-sdk/commit/28ccb97f1dc709d25ed686dae241f8462c62b9cf)) +* Update cross-platform-tests.yml ([#530](https://github.com/mParticle/mparticle-android-sdk/issues/530)) ([0924e88](https://github.com/mParticle/mparticle-android-sdk/commit/0924e88331d3f92fb7bdd774fd33e162c4fc0aa2)) +* update emulator version tag ([#537](https://github.com/mParticle/mparticle-android-sdk/issues/537)) ([4f2fea6](https://github.com/mParticle/mparticle-android-sdk/commit/4f2fea6290e497e32d6045fb2d1d32f44538f1f2)) +* Update submodules ([ab53cb1](https://github.com/mParticle/mparticle-android-sdk/commit/ab53cb1f54e5251980045b8f754fca14966d95fa)) + ## [5.58.4](https://github.com/mParticle/mparticle-android-sdk/compare/v5.58.3...v5.58.4) (2024-12-12) diff --git a/README.md b/README.md index 5b1858e5f..396bfa840 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.4' + implementation 'com.mparticle:android-core:5.58.5' } ``` @@ -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.4', - 'com.mparticle:android-another-kit:5.58.4' + 'com.mparticle:android-example-kit:5.58.5', + 'com.mparticle:android-another-kit:5.58.5' ) } ``` diff --git a/build.gradle b/build.gradle index 4227d5ad5..0ad6c10d6 100644 --- a/build.gradle +++ b/build.gradle @@ -35,7 +35,7 @@ subprojects { allprojects { group = 'com.mparticle' - version = '5.58.4-SNAPSHOT' + version = '5.58.5-SNAPSHOT' if (project.hasProperty('isRelease') && project.isRelease) { version = version.toString().replace("-SNAPSHOT", "") }