Skip to content

Commit

Permalink
chore: 5.57.0 (release)
Browse files Browse the repository at this point in the history
## [5.57.0](v5.56.5...v5.57.0) (2024-08-13)

### Features

* Support direct URL routing ([#499](#499)) ([d7aa30c](d7aa30c))

### Bug Fixes

* Crash in KitConfiguration due to NumberFormatException ([#503](#503)) ([e1a23e7](e1a23e7))
  • Loading branch information
mparticle-automation committed Aug 13, 2024
1 parent d7aa30c commit 94284f5
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## [5.57.0](https://github.com/mParticle/mparticle-android-sdk/compare/v5.56.5...v5.57.0) (2024-08-13)


### Features

* Support direct URL routing ([#499](https://github.com/mParticle/mparticle-android-sdk/issues/499)) ([d7aa30c](https://github.com/mParticle/mparticle-android-sdk/commit/d7aa30c8c5ed53b72ac4d9914ef07915f4c374e4))


### Bug Fixes

* Crash in KitConfiguration due to NumberFormatException ([#503](https://github.com/mParticle/mparticle-android-sdk/issues/503)) ([e1a23e7](https://github.com/mParticle/mparticle-android-sdk/commit/e1a23e786f22068da004084e363986cd2e377981))

## [5.56.5](https://github.com/mParticle/mparticle-android-sdk/compare/v5.56.4...v5.56.5) (2024-08-06)


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

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

0 comments on commit 94284f5

Please sign in to comment.