Skip to content

Commit

Permalink
chore: 5.54.0 (release)
Browse files Browse the repository at this point in the history
## [5.54.0](v5.53.2...v5.54.0) (2023-11-03)

### Features

* update CI in kits ([5b12dbc](5b12dbc))

### Bug Fixes

* kit syntax for lint ([fc63aa1](fc63aa1))
* remove daily cron and fix branch deletion ([57fda36](57fda36))

### Updates & Maintenance

* pin all third party github actions ([74bcca8](74bcca8))
  • Loading branch information
mparticle-automation committed Nov 3, 2023
1 parent 5b12dbc commit 86b41cc
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 4 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
## [5.54.0](https://github.com/mParticle/mparticle-android-sdk/compare/v5.53.2...v5.54.0) (2023-11-03)


### Features

* update CI in kits ([5b12dbc](https://github.com/mParticle/mparticle-android-sdk/commit/5b12dbc9b3bf1f72651d1d96882bab104fa434b1))


### Bug Fixes

* kit syntax for lint ([fc63aa1](https://github.com/mParticle/mparticle-android-sdk/commit/fc63aa11683bd8b95fb8300fadcb9a9753fe0eec))
* remove daily cron and fix branch deletion ([57fda36](https://github.com/mParticle/mparticle-android-sdk/commit/57fda36576e5967e5fc2b0cbb7a3f1f1f4c7c902))


### Updates & Maintenance

* pin all third party github actions ([74bcca8](https://github.com/mParticle/mparticle-android-sdk/commit/74bcca86215539a7d452588feb481f1c39554262))

## [5.53.2](https://github.com/mParticle/mparticle-android-sdk/compare/v5.53.1...v5.53.2) (2023-10-16)


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.53.2'
implementation 'com.mparticle:android-core:5.54.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.53.2',
'com.mparticle:android-another-kit:5.53.2'
'com.mparticle:android-example-kit:5.54.0',
'com.mparticle:android-another-kit:5.54.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.53.2-SNAPSHOT'
version = '5.54.0-SNAPSHOT'
if (project.hasProperty('isRelease') && project.isRelease) {
version = version.toString().replace("-SNAPSHOT", "")
}
Expand Down

0 comments on commit 86b41cc

Please sign in to comment.