Skip to content

Commit

Permalink
chore: 5.49.0 (release)
Browse files Browse the repository at this point in the history
## [5.49.0](v5.48.4...v5.49.0) (2023-01-05)

### Features

* Adding method to change update interval after initialization ([#301](#301)) ([e23ad37](e23ad37))
* Adding WrapperSdk, WrapperSdkVersion - adding this values to MParticleOptions and MParticle ([#295](#295)) ([fe27e48](fe27e48))

### Updates & Maintenance

* Add semgrep, mobsf static analysis ([#289](#289)) ([aab45d0](aab45d0))
* Update PULL_REQUEST_TEMPLATE.md ([#293](#293)) ([b54c6bd](b54c6bd))
* Update submodules ([f682db7](f682db7))
  • Loading branch information
mparticle-automation committed Jan 5, 2023
1 parent f682db7 commit 47164f8
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
## [5.49.0](https://github.com/mParticle/mparticle-android-sdk/compare/v5.48.4...v5.49.0) (2023-01-05)


### Features

* Adding method to change update interval after initialization ([#301](https://github.com/mParticle/mparticle-android-sdk/issues/301)) ([e23ad37](https://github.com/mParticle/mparticle-android-sdk/commit/e23ad37a70e175ad574dc1391377478e0a5a9408))
* Adding WrapperSdk, WrapperSdkVersion - adding this values to MParticleOptions and MParticle ([#295](https://github.com/mParticle/mparticle-android-sdk/issues/295)) ([fe27e48](https://github.com/mParticle/mparticle-android-sdk/commit/fe27e4872adca4ff4766e1a2372a9259a8ed0b3c))


### Updates & Maintenance

* Add semgrep, mobsf static analysis ([#289](https://github.com/mParticle/mparticle-android-sdk/issues/289)) ([aab45d0](https://github.com/mParticle/mparticle-android-sdk/commit/aab45d0c33f8c47324f4d472d2aad16b917611fc))
* Update PULL_REQUEST_TEMPLATE.md ([#293](https://github.com/mParticle/mparticle-android-sdk/issues/293)) ([b54c6bd](https://github.com/mParticle/mparticle-android-sdk/commit/b54c6bd5e466063515187a73c8c16a95efc0a11c))
* Update submodules ([f682db7](https://github.com/mParticle/mparticle-android-sdk/commit/f682db7377a6f1ff117748f48c0979a930c669f9))

## [5.48.4](https://github.com/mParticle/mparticle-android-sdk/compare/v5.48.3...v5.48.4) (2022-12-08)


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

0 comments on commit 47164f8

Please sign in to comment.