Skip to content

Commit

Permalink
chore: 5.58.6 (release)
Browse files Browse the repository at this point in the history
## [5.58.6](v5.58.5...v5.58.6) (2025-01-30)

### Updates & Maintenance

* Migrate Internal OS Helper class to kotlin ([#515](#515)) ([#536](#536)) ([6ce2e7d](6ce2e7d))
* Migrate Internal user storage class to kotlin ([#516](#516)) ([#539](#539)) ([fab4925](fab4925))
  • Loading branch information
mparticle-automation committed Jan 30, 2025
1 parent fab4925 commit be351b9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## [5.58.6](https://github.com/mParticle/mparticle-android-sdk/compare/v5.58.5...v5.58.6) (2025-01-30)


### Updates & Maintenance

* Migrate Internal OS Helper class to kotlin ([#515](https://github.com/mParticle/mparticle-android-sdk/issues/515)) ([#536](https://github.com/mParticle/mparticle-android-sdk/issues/536)) ([6ce2e7d](https://github.com/mParticle/mparticle-android-sdk/commit/6ce2e7d08642e3b64c2c3251a44aca5967975d66))
* Migrate Internal user storage class to kotlin ([#516](https://github.com/mParticle/mparticle-android-sdk/issues/516)) ([#539](https://github.com/mParticle/mparticle-android-sdk/issues/539)) ([fab4925](https://github.com/mParticle/mparticle-android-sdk/commit/fab49257dd28495250ffca9ce8383ad60c0b728a))

## [5.58.5](https://github.com/mParticle/mparticle-android-sdk/compare/v5.58.4...v5.58.5) (2025-01-24)


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.58.5'
implementation 'com.mparticle:android-core:5.58.6'
}
```

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.58.5',
'com.mparticle:android-another-kit:5.58.5'
'com.mparticle:android-example-kit:5.58.6',
'com.mparticle:android-another-kit:5.58.6'
)
}
```
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.58.5-SNAPSHOT'
version = '5.58.6-SNAPSHOT'
if (project.hasProperty('isRelease') && project.isRelease) {
version = version.toString().replace("-SNAPSHOT", "")
}
Expand Down

0 comments on commit be351b9

Please sign in to comment.