From e5c30d2bf41a0c2efb546ffa258d986484329229 Mon Sep 17 00:00:00 2001 From: mparticle-automation Date: Thu, 24 Oct 2024 20:13:34 +0000 Subject: [PATCH] chore: 5.58.3 (release) ## [5.58.3](https://github.com/mParticle/mparticle-android-sdk/compare/v5.58.2...v5.58.3) (2024-10-24) ### Updates & Maintenance * Migrate Internal Constants class to kotlin ([#510](https://github.com/mParticle/mparticle-android-sdk/issues/510)) ([2fd32f6](https://github.com/mParticle/mparticle-android-sdk/commit/2fd32f6d068975b0c57bde1a50e25c3a1c5617bb)) * Migrate MPLifecycleCallbackDelegate and MPLocationListener class to Kotlin ([#506](https://github.com/mParticle/mparticle-android-sdk/issues/506)) ([687e623](https://github.com/mParticle/mparticle-android-sdk/commit/687e6234bdfc6b24680e92f348422f4a5c298529)) * Remove unused session history upload code ([#507](https://github.com/mParticle/mparticle-android-sdk/issues/507)) ([a86cd3b](https://github.com/mParticle/mparticle-android-sdk/commit/a86cd3b7bdc923a152ae9f5503244aadb50065de)) * Update submodules ([81e50ca](https://github.com/mParticle/mparticle-android-sdk/commit/81e50ca7f9f185c143dbc3567772e331588f72cd)) --- 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 84035402e..458f328d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## [5.58.3](https://github.com/mParticle/mparticle-android-sdk/compare/v5.58.2...v5.58.3) (2024-10-24) + + +### Updates & Maintenance + +* Migrate Internal Constants class to kotlin ([#510](https://github.com/mParticle/mparticle-android-sdk/issues/510)) ([2fd32f6](https://github.com/mParticle/mparticle-android-sdk/commit/2fd32f6d068975b0c57bde1a50e25c3a1c5617bb)) +* Migrate MPLifecycleCallbackDelegate and MPLocationListener class to Kotlin ([#506](https://github.com/mParticle/mparticle-android-sdk/issues/506)) ([687e623](https://github.com/mParticle/mparticle-android-sdk/commit/687e6234bdfc6b24680e92f348422f4a5c298529)) +* Remove unused session history upload code ([#507](https://github.com/mParticle/mparticle-android-sdk/issues/507)) ([a86cd3b](https://github.com/mParticle/mparticle-android-sdk/commit/a86cd3b7bdc923a152ae9f5503244aadb50065de)) +* Update submodules ([81e50ca](https://github.com/mParticle/mparticle-android-sdk/commit/81e50ca7f9f185c143dbc3567772e331588f72cd)) + ## [5.58.2](https://github.com/mParticle/mparticle-android-sdk/compare/v5.58.1...v5.58.2) (2024-09-11) diff --git a/README.md b/README.md index dfa3470f7..95bd3c633 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.2' + implementation 'com.mparticle:android-core:5.58.3' } ``` @@ -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.2', - 'com.mparticle:android-another-kit:5.58.2' + 'com.mparticle:android-example-kit:5.58.3', + 'com.mparticle:android-another-kit:5.58.3' ) } ``` diff --git a/build.gradle b/build.gradle index af0f34519..785237bef 100644 --- a/build.gradle +++ b/build.gradle @@ -35,7 +35,7 @@ subprojects { allprojects { group = 'com.mparticle' - version = '5.58.2-SNAPSHOT' + version = '5.58.3-SNAPSHOT' if (project.hasProperty('isRelease') && project.isRelease) { version = version.toString().replace("-SNAPSHOT", "") }