From 3718addd88cecc164fae1c74310a6ac1aa21f7f4 Mon Sep 17 00:00:00 2001 From: mparticle-automation Date: Tue, 9 Jul 2024 16:37:53 +0000 Subject: [PATCH] chore: 5.56.1 (release) ## [5.56.1](https://github.com/mParticle/mparticle-android-sdk/compare/v5.56.0...v5.56.1) (2024-07-09) ### Bug Fixes * Add enum value for event types ([#496](https://github.com/mParticle/mparticle-android-sdk/issues/496)) ([b6ecb8a](https://github.com/mParticle/mparticle-android-sdk/commit/b6ecb8ad1436cd703574e94c236c12882ab9908b)) --- CHANGELOG.md | 7 +++++++ README.md | 6 +++--- build.gradle | 2 +- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 37c817e7d..121ae93f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [5.56.1](https://github.com/mParticle/mparticle-android-sdk/compare/v5.56.0...v5.56.1) (2024-07-09) + + +### Bug Fixes + +* Add enum value for event types ([#496](https://github.com/mParticle/mparticle-android-sdk/issues/496)) ([b6ecb8a](https://github.com/mParticle/mparticle-android-sdk/commit/b6ecb8ad1436cd703574e94c236c12882ab9908b)) + ## [5.56.0](https://github.com/mParticle/mparticle-android-sdk/compare/v5.55.9...v5.56.0) (2024-06-25) diff --git a/README.md b/README.md index 20c722d08..d1685a9fa 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.56.0' + implementation 'com.mparticle:android-core:5.56.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.56.0', - 'com.mparticle:android-another-kit:5.56.0' + 'com.mparticle:android-example-kit:5.56.1', + 'com.mparticle:android-another-kit:5.56.1' ) } ``` diff --git a/build.gradle b/build.gradle index d41dc8c30..57166a80a 100644 --- a/build.gradle +++ b/build.gradle @@ -35,7 +35,7 @@ subprojects { allprojects { group = 'com.mparticle' - version = '5.56.0-SNAPSHOT' + version = '5.56.1-SNAPSHOT' if (project.hasProperty('isRelease') && project.isRelease) { version = version.toString().replace("-SNAPSHOT", "") }