diff --git a/CHANGELOG.md b/CHANGELOG.md index d835f9205..09ed41d2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## [5.55.3](https://github.com/mParticle/mparticle-android-sdk/compare/v5.55.2...v5.55.3) (2024-04-12) + + +### Bug Fixes + +* ANRs in android app due to multiple installReferrer API calls ([#479](https://github.com/mParticle/mparticle-android-sdk/issues/479)) ([353eac7](https://github.com/mParticle/mparticle-android-sdk/commit/353eac72ea53f78d620e2e0be3e3883675ec8df0)) + + +### Updates & Maintenance + +* Update submodules ([2e75a6d](https://github.com/mParticle/mparticle-android-sdk/commit/2e75a6db592a31db47c8599753a3e290483c4a5e)) + ## [5.55.2](https://github.com/mParticle/mparticle-android-sdk/compare/v5.55.1...v5.55.2) (2024-03-02) diff --git a/README.md b/README.md index e527ff887..fc24a747e 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.2' + implementation 'com.mparticle:android-core:5.55.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.55.2', - 'com.mparticle:android-another-kit:5.55.2' + 'com.mparticle:android-example-kit:5.55.3', + 'com.mparticle:android-another-kit:5.55.3' ) } ``` diff --git a/build.gradle b/build.gradle index bb883ebe9..411457f23 100644 --- a/build.gradle +++ b/build.gradle @@ -35,7 +35,7 @@ subprojects { allprojects { group = 'com.mparticle' - version = '5.55.2-SNAPSHOT' + version = '5.55.3-SNAPSHOT' if (project.hasProperty('isRelease') && project.isRelease) { version = version.toString().replace("-SNAPSHOT", "") }