From 92e967dd1c5e98b0c2a9b0375d0584e6d1b55141 Mon Sep 17 00:00:00 2001 From: mparticle-automation Date: Mon, 24 Jul 2023 17:34:34 +0000 Subject: [PATCH] chore: 5.52.0 (release) ## [5.52.0](https://github.com/mParticle/mparticle-android-sdk/compare/v5.51.6...v5.52.0) (2023-07-24) ### Features * sideloading kits ([#401](https://github.com/mParticle/mparticle-android-sdk/issues/401)) ([80de8ea](https://github.com/mParticle/mparticle-android-sdk/commit/80de8ea51253f73b04947c388d887b3ec4a05f6d)), closes [#378](https://github.com/mParticle/mparticle-android-sdk/issues/378) ### Updates & Maintenance * Update submodules ([7d555ce](https://github.com/mParticle/mparticle-android-sdk/commit/7d555ce6e032d00a17b7c45a088c901a0ccb5592)) --- CHANGELOG.md | 12 ++++++++++++ README.md | 6 +++--- build.gradle | 2 +- 3 files changed, 16 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f68f06ff..60639ec57 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## [5.52.0](https://github.com/mParticle/mparticle-android-sdk/compare/v5.51.6...v5.52.0) (2023-07-24) + + +### Features + +* sideloading kits ([#401](https://github.com/mParticle/mparticle-android-sdk/issues/401)) ([80de8ea](https://github.com/mParticle/mparticle-android-sdk/commit/80de8ea51253f73b04947c388d887b3ec4a05f6d)), closes [#378](https://github.com/mParticle/mparticle-android-sdk/issues/378) + + +### Updates & Maintenance + +* Update submodules ([7d555ce](https://github.com/mParticle/mparticle-android-sdk/commit/7d555ce6e032d00a17b7c45a088c901a0ccb5592)) + ## [5.51.6](https://github.com/mParticle/mparticle-android-sdk/compare/v5.51.5...v5.51.6) (2023-07-20) diff --git a/README.md b/README.md index d002d05e5..f7e08e78e 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.51.6' + implementation 'com.mparticle:android-core:5.52.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.51.6', - 'com.mparticle:android-another-kit:5.51.6' + 'com.mparticle:android-example-kit:5.52.0', + 'com.mparticle:android-another-kit:5.52.0' ) } ``` diff --git a/build.gradle b/build.gradle index 83fa24cca..8b573ef5a 100644 --- a/build.gradle +++ b/build.gradle @@ -35,7 +35,7 @@ subprojects { allprojects { group = 'com.mparticle' - version = '5.51.6-SNAPSHOT' + version = '5.52.0-SNAPSHOT' if (project.hasProperty('isRelease') && project.isRelease) { version = version.toString().replace("-SNAPSHOT", "") }