diff --git a/CHANGELOG.md b/CHANGELOG.md index 26b59dc8c..ebadcbc21 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [5.51.4](https://github.com/mParticle/mparticle-android-sdk/compare/v5.51.3...v5.51.4) (2023-07-05) + + +### Bug Fixes + +* Kit Initialization & De-Initialization. ([#398](https://github.com/mParticle/mparticle-android-sdk/issues/398)) ([42560f1](https://github.com/mParticle/mparticle-android-sdk/commit/42560f153b7d5636dbbb5a8ef01040514ddccc8d)) + ## [5.51.3](https://github.com/mParticle/mparticle-android-sdk/compare/v5.51.2...v5.51.3) (2023-06-28) diff --git a/README.md b/README.md index 903772a48..cf1cfcf83 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.51.3' + implementation 'com.mparticle:android-core:5.51.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.51.3', - 'com.mparticle:android-another-kit:5.51.3' + 'com.mparticle:android-example-kit:5.51.4', + 'com.mparticle:android-another-kit:5.51.4' ) } ``` diff --git a/build.gradle b/build.gradle index d2e41ddad..3cf75fc4b 100644 --- a/build.gradle +++ b/build.gradle @@ -35,7 +35,7 @@ subprojects { allprojects { group = 'com.mparticle' - version = '5.51.3-SNAPSHOT' + version = '5.51.4-SNAPSHOT' if (project.hasProperty('isRelease') && project.isRelease) { version = version.toString().replace("-SNAPSHOT", "") }