diff --git a/CHANGELOG.md b/CHANGELOG.md index 6478df12a..d835f9205 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## [5.55.2](https://github.com/mParticle/mparticle-android-sdk/compare/v5.55.1...v5.55.2) (2024-03-02) + + +### Bug Fixes + +* make number parsing more strict ([a831780](https://github.com/mParticle/mparticle-android-sdk/commit/a8317807e60a6239181b44496b5707104421a96f)) + + +### Updates & Maintenance + +* Update submodules ([d8a2903](https://github.com/mParticle/mparticle-android-sdk/commit/d8a2903e249cfa8070687a482d3317fd67a295f2)) + ## [5.55.1](https://github.com/mParticle/mparticle-android-sdk/compare/v5.55.0...v5.55.1) (2024-02-06) diff --git a/README.md b/README.md index 1256d1c6c..e527ff887 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.1' + implementation 'com.mparticle:android-core:5.55.2' } ``` @@ -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.1', - 'com.mparticle:android-another-kit:5.55.1' + 'com.mparticle:android-example-kit:5.55.2', + 'com.mparticle:android-another-kit:5.55.2' ) } ``` diff --git a/build.gradle b/build.gradle index c231210f3..bb883ebe9 100644 --- a/build.gradle +++ b/build.gradle @@ -35,7 +35,7 @@ subprojects { allprojects { group = 'com.mparticle' - version = '5.55.1-SNAPSHOT' + version = '5.55.2-SNAPSHOT' if (project.hasProperty('isRelease') && project.isRelease) { version = version.toString().replace("-SNAPSHOT", "") }