diff --git a/CHANGELOG.md b/CHANGELOG.md index 1cf5dd8b3..3febe86fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## [5.55.9](https://github.com/mParticle/mparticle-android-sdk/compare/v5.55.8...v5.55.9) (2024-06-25) + + +### Bug Fixes + +* Refactor code for accessing Google Ad info ([#491](https://github.com/mParticle/mparticle-android-sdk/issues/491)) ([ee1525c](https://github.com/mParticle/mparticle-android-sdk/commit/ee1525c5eae2ca88277a1f2ac6115b028b981a4f)) + + +### Updates & Maintenance + +* Update submodules ([d6a2ba5](https://github.com/mParticle/mparticle-android-sdk/commit/d6a2ba59462668cbf4b4dda5bb8c7b82696e5214)) + ## [5.55.8](https://github.com/mParticle/mparticle-android-sdk/compare/v5.55.7...v5.55.8) (2024-05-31) diff --git a/README.md b/README.md index a2e6cc607..dafe5a307 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.8' + implementation 'com.mparticle:android-core:5.55.9' } ``` @@ -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.8', - 'com.mparticle:android-another-kit:5.55.8' + 'com.mparticle:android-example-kit:5.55.9', + 'com.mparticle:android-another-kit:5.55.9' ) } ``` diff --git a/build.gradle b/build.gradle index aa1ae694e..b83a5ed34 100644 --- a/build.gradle +++ b/build.gradle @@ -35,7 +35,7 @@ subprojects { allprojects { group = 'com.mparticle' - version = '5.55.8-SNAPSHOT' + version = '5.55.9-SNAPSHOT' if (project.hasProperty('isRelease') && project.isRelease) { version = version.toString().replace("-SNAPSHOT", "") }