Skip to content

Commit

Permalink
chore(release): 5.41.3
Browse files Browse the repository at this point in the history
## [5.41.3](v5.41.2...v5.41.3) (2022-07-01)

### Bug Fixes

* config migration logic causes kits to deinit on re-upgrade ([#196](#196)) ([ae210c4](ae210c4))
* modify() call throws an exception when user is not present ([#195](#195)) ([72731d5](72731d5))

### Updates & Maintenance

* Update Submodules ([99fed27](99fed27))
  • Loading branch information
mparticle-automation committed Jul 1, 2022
1 parent 99fed27 commit 4d4b51c
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
## [5.41.3](https:/mParticle/mparticle-android-sdk/compare/v5.41.2...v5.41.3) (2022-07-01)


### Bug Fixes

* config migration logic causes kits to deinit on re-upgrade ([#196](https:/mParticle/mparticle-android-sdk/issues/196)) ([ae210c4](https:/mParticle/mparticle-android-sdk/commit/ae210c48cae363fc1d5c3ee2a4e132795e3b333c))
* modify() call throws an exception when user is not present ([#195](https:/mParticle/mparticle-android-sdk/issues/195)) ([72731d5](https:/mParticle/mparticle-android-sdk/commit/72731d5da3597a3298d113a5ecc427cd773f51cd))


### Updates & Maintenance

* Update Submodules ([99fed27](https:/mParticle/mparticle-android-sdk/commit/99fed275ce272535a8891e179996c305c6999dc2))

## [5.41.2](https:/mParticle/mparticle-android-sdk/compare/v5.41.1...v5.41.2) (2022-06-27)


Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.2'
implementation 'com.mparticle:android-core:5.41.3'
}
```

Expand All @@ -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.2',
'com.mparticle:android-another-kit:5.41.2'
'com.mparticle:android-example-kit:5.41.3',
'com.mparticle:android-another-kit:5.41.3'
)
}
```
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ subprojects {

allprojects {
group = 'com.mparticle'
version = '5.41.2-SNAPSHOT'
version = '5.41.3-SNAPSHOT'
if (project.hasProperty('isRelease') && project.isRelease) {
version = version.toString().replace("-SNAPSHOT", "")
}
Expand Down

0 comments on commit 4d4b51c

Please sign in to comment.