diff --git a/CHANGELOG.md b/CHANGELOG.md index 4989cef19..9573b8518 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## [5.42.0](https://github.com/mParticle/mparticle-android-sdk/compare/v5.41.3...v5.42.0) (2022-07-18) + + +### Features + +* upgrade sonarqube to 3.4 and kotlin to 1.7.10 ([#203](https://github.com/mParticle/mparticle-android-sdk/issues/203)) ([699ae9e](https://github.com/mParticle/mparticle-android-sdk/commit/699ae9e310ce9b033fc9bee0f1583d083ab60e40)) + + +### Updates & Maintenance + +* Update Submodules ([27a68d1](https://github.com/mParticle/mparticle-android-sdk/commit/27a68d18f80d83a7a975a021585a47959aa552b8)) + ## [5.41.3](https://github.com/mParticle/mparticle-android-sdk/compare/v5.41.2...v5.41.3) (2022-07-01) diff --git a/README.md b/README.md index 204f511c7..bc838ad6f 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.41.3' + implementation 'com.mparticle:android-core:5.42.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.41.3', - 'com.mparticle:android-another-kit:5.41.3' + 'com.mparticle:android-example-kit:5.42.0', + 'com.mparticle:android-another-kit:5.42.0' ) } ``` diff --git a/build.gradle b/build.gradle index b395bcacb..a9ed90e5e 100644 --- a/build.gradle +++ b/build.gradle @@ -35,7 +35,7 @@ subprojects { allprojects { group = 'com.mparticle' - version = '5.41.3-SNAPSHOT' + version = '5.42.0-SNAPSHOT' if (project.hasProperty('isRelease') && project.isRelease) { version = version.toString().replace("-SNAPSHOT", "") }