Skip to content

Commit

Permalink
chore: 5.46.0 (release)
Browse files Browse the repository at this point in the history
## [5.46.0](v5.45.2...v5.46.0) (2022-10-14)

### Features

* Bump up compile SDK to 33 and ktlint version ([#245](#245)) ([67dc378](67dc378))
* Port android core module java instrumented and unit tests to kotlin - phase1 ([#249](#249)) ([62e4254](62e4254))
* Port android core module java instrumented and unit tests to kotlin (p2) ([#250](#250)) ([23434d2](23434d2))
* Ported Android Kit Base tests to Kotlin ([#253](#253)) ([c21dd71](c21dd71))
* update isLimitAdTracking logic for Android 13 ([#233](#233)) ([f7b9284](f7b9284))

### Bug Fixes

* Convert MParticleTest.java file to kotlin and fix failing test ([#251](#251)) ([604c1b9](604c1b9))

### Documentation

* Update copy in readme for android 13 ([#255](#255)) ([c9a648d](c9a648d))

### Updates & Maintenance

* add in missing inherit in rebase job ([2197610](2197610))
* Update submodules ([7bdaf63](7bdaf63))
* Update to kotlin 1.7.20 ([#247](#247)) ([c9e1729](c9e1729))
  • Loading branch information
mparticle-automation committed Oct 14, 2022
1 parent 7bdaf63 commit 716146c
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 4 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,31 @@
## [5.46.0](https:/mParticle/mparticle-android-sdk/compare/v5.45.2...v5.46.0) (2022-10-14)


### Features

* Bump up compile SDK to 33 and ktlint version ([#245](https:/mParticle/mparticle-android-sdk/issues/245)) ([67dc378](https:/mParticle/mparticle-android-sdk/commit/67dc378ae98a97a6b9c8cf5545125c14ceffcdb5))
* Port android core module java instrumented and unit tests to kotlin - phase1 ([#249](https:/mParticle/mparticle-android-sdk/issues/249)) ([62e4254](https:/mParticle/mparticle-android-sdk/commit/62e42545d73ae2c9b8e50d54f3dbedfd9dd1b431))
* Port android core module java instrumented and unit tests to kotlin (p2) ([#250](https:/mParticle/mparticle-android-sdk/issues/250)) ([23434d2](https:/mParticle/mparticle-android-sdk/commit/23434d2a4918ef58a7872401f8602c84b177610d))
* Ported Android Kit Base tests to Kotlin ([#253](https:/mParticle/mparticle-android-sdk/issues/253)) ([c21dd71](https:/mParticle/mparticle-android-sdk/commit/c21dd71405e56ff48ac6db3455899588243133c6))
* update isLimitAdTracking logic for Android 13 ([#233](https:/mParticle/mparticle-android-sdk/issues/233)) ([f7b9284](https:/mParticle/mparticle-android-sdk/commit/f7b92845dd0eebe236d1aa836d50161f8bce82f8))


### Bug Fixes

* Convert MParticleTest.java file to kotlin and fix failing test ([#251](https:/mParticle/mparticle-android-sdk/issues/251)) ([604c1b9](https:/mParticle/mparticle-android-sdk/commit/604c1b976e753a282bf0173b559f0427c144fe47))


### Documentation

* Update copy in readme for android 13 ([#255](https:/mParticle/mparticle-android-sdk/issues/255)) ([c9a648d](https:/mParticle/mparticle-android-sdk/commit/c9a648d87eb5b6586a6693b75ffa54fe711b02f2))


### Updates & Maintenance

* add in missing inherit in rebase job ([2197610](https:/mParticle/mparticle-android-sdk/commit/2197610fe1381d941f3f6b5f99afc64965decc52))
* Update submodules ([7bdaf63](https:/mParticle/mparticle-android-sdk/commit/7bdaf63c9444c78ed1063b7039179cfdd645a506))
* Update to kotlin 1.7.20 ([#247](https:/mParticle/mparticle-android-sdk/issues/247)) ([c9e1729](https:/mParticle/mparticle-android-sdk/commit/c9e1729b6ab8817e4c7b0661ae25b3ffb6df4404))

## [5.45.2](https:/mParticle/mparticle-android-sdk/compare/v5.45.1...v5.45.2) (2022-09-26)


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

0 comments on commit 716146c

Please sign in to comment.