diff --git a/CHANGELOG.md b/CHANGELOG.md index 34f85986f..1cf5dd8b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## [5.55.8](https://github.com/mParticle/mparticle-android-sdk/compare/v5.55.7...v5.55.8) (2024-05-31) + + +### Bug Fixes + +* Use DisplayMetrics instead of WindowManager for StrictMode Error ([#483](https://github.com/mParticle/mparticle-android-sdk/issues/483)) ([648c079](https://github.com/mParticle/mparticle-android-sdk/commit/648c079d26608314f117d3e96433d289b522228d)) + + +### Updates & Maintenance + +* Update submodules ([fa40e06](https://github.com/mParticle/mparticle-android-sdk/commit/fa40e06f8acd64d33f1f81e3ddbe0da8a01203da)) + ## [5.55.7](https://github.com/mParticle/mparticle-android-sdk/compare/v5.55.6...v5.55.7) (2024-05-29) diff --git a/README.md b/README.md index 853711ae5..a2e6cc607 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.55.7' + implementation 'com.mparticle:android-core:5.55.8' } ``` @@ -27,8 +27,8 @@ Several integrations require additional client-side add-on libraries called "kit ```groovy dependencies { implementation ( - 'com.mparticle:android-example-kit:5.55.7', - 'com.mparticle:android-another-kit:5.55.7' + 'com.mparticle:android-example-kit:5.55.8', + 'com.mparticle:android-another-kit:5.55.8' ) } ``` diff --git a/build.gradle b/build.gradle index f4f0bf1ee..aa1ae694e 100644 --- a/build.gradle +++ b/build.gradle @@ -35,7 +35,7 @@ subprojects { allprojects { group = 'com.mparticle' - version = '5.55.7-SNAPSHOT' + version = '5.55.8-SNAPSHOT' if (project.hasProperty('isRelease') && project.isRelease) { version = version.toString().replace("-SNAPSHOT", "") }