diff --git a/CHANGELOG.md b/CHANGELOG.md index f18065637..5827cdda9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## [5.58.0](https://github.com/mParticle/mparticle-android-sdk/compare/v5.57.0...v5.58.0) (2024-08-21) + + +### Features + +* Certificate pinning update ([#504](https://github.com/mParticle/mparticle-android-sdk/issues/504)) ([85b38cd](https://github.com/mParticle/mparticle-android-sdk/commit/85b38cd4703a92fc5ea692eab6660361f793dfed)) + + +### Updates & Maintenance + +* Update submodules ([2c359eb](https://github.com/mParticle/mparticle-android-sdk/commit/2c359eb7bcf5ed53a6cc3db0a6e39e9a2a0330c5)) + ## [5.57.0](https://github.com/mParticle/mparticle-android-sdk/compare/v5.56.5...v5.57.0) (2024-08-13) diff --git a/README.md b/README.md index d0d882c74..a37b2f116 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.57.0' + implementation 'com.mparticle:android-core:5.58.0' } ``` @@ -27,8 +27,8 @@ Several integrations require additional client-side add-on libraries called "kit ```groovy dependencies { implementation ( - 'com.mparticle:android-example-kit:5.57.0', - 'com.mparticle:android-another-kit:5.57.0' + 'com.mparticle:android-example-kit:5.58.0', + 'com.mparticle:android-another-kit:5.58.0' ) } ``` diff --git a/build.gradle b/build.gradle index 688e9b2fc..f9cbb7299 100644 --- a/build.gradle +++ b/build.gradle @@ -35,7 +35,7 @@ subprojects { allprojects { group = 'com.mparticle' - version = '5.57.0-SNAPSHOT' + version = '5.58.0-SNAPSHOT' if (project.hasProperty('isRelease') && project.isRelease) { version = version.toString().replace("-SNAPSHOT", "") }