Skip to content

Commit 716146c

Browse files
chore: 5.46.0 (release)
## [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))
1 parent 7bdaf63 commit 716146c

3 files changed

Lines changed: 32 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
## [5.46.0](https://github.com/mParticle/mparticle-android-sdk/compare/v5.45.2...v5.46.0) (2022-10-14)
2+
3+
4+
### Features
5+
6+
* Bump up compile SDK to 33 and ktlint version ([#245](https://github.com/mParticle/mparticle-android-sdk/issues/245)) ([67dc378](https://github.com/mParticle/mparticle-android-sdk/commit/67dc378ae98a97a6b9c8cf5545125c14ceffcdb5))
7+
* Port android core module java instrumented and unit tests to kotlin - phase1 ([#249](https://github.com/mParticle/mparticle-android-sdk/issues/249)) ([62e4254](https://github.com/mParticle/mparticle-android-sdk/commit/62e42545d73ae2c9b8e50d54f3dbedfd9dd1b431))
8+
* Port android core module java instrumented and unit tests to kotlin (p2) ([#250](https://github.com/mParticle/mparticle-android-sdk/issues/250)) ([23434d2](https://github.com/mParticle/mparticle-android-sdk/commit/23434d2a4918ef58a7872401f8602c84b177610d))
9+
* Ported Android Kit Base tests to Kotlin ([#253](https://github.com/mParticle/mparticle-android-sdk/issues/253)) ([c21dd71](https://github.com/mParticle/mparticle-android-sdk/commit/c21dd71405e56ff48ac6db3455899588243133c6))
10+
* update isLimitAdTracking logic for Android 13 ([#233](https://github.com/mParticle/mparticle-android-sdk/issues/233)) ([f7b9284](https://github.com/mParticle/mparticle-android-sdk/commit/f7b92845dd0eebe236d1aa836d50161f8bce82f8))
11+
12+
13+
### Bug Fixes
14+
15+
* Convert MParticleTest.java file to kotlin and fix failing test ([#251](https://github.com/mParticle/mparticle-android-sdk/issues/251)) ([604c1b9](https://github.com/mParticle/mparticle-android-sdk/commit/604c1b976e753a282bf0173b559f0427c144fe47))
16+
17+
18+
### Documentation
19+
20+
* Update copy in readme for android 13 ([#255](https://github.com/mParticle/mparticle-android-sdk/issues/255)) ([c9a648d](https://github.com/mParticle/mparticle-android-sdk/commit/c9a648d87eb5b6586a6693b75ffa54fe711b02f2))
21+
22+
23+
### Updates & Maintenance
24+
25+
* add in missing inherit in rebase job ([2197610](https://github.com/mParticle/mparticle-android-sdk/commit/2197610fe1381d941f3f6b5f99afc64965decc52))
26+
* Update submodules ([7bdaf63](https://github.com/mParticle/mparticle-android-sdk/commit/7bdaf63c9444c78ed1063b7039179cfdd645a506))
27+
* Update to kotlin 1.7.20 ([#247](https://github.com/mParticle/mparticle-android-sdk/issues/247)) ([c9e1729](https://github.com/mParticle/mparticle-android-sdk/commit/c9e1729b6ab8817e4c7b0661ae25b3ffb6df4404))
28+
129
## [5.45.2](https://github.com/mParticle/mparticle-android-sdk/compare/v5.45.1...v5.45.2) (2022-09-26)
230

331

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ You can grab the Core SDK via Maven Central. Please see the badge above and foll
1616

1717
```groovy
1818
dependencies {
19-
implementation 'com.mparticle:android-core:5.45.2'
19+
implementation 'com.mparticle:android-core:5.46.0'
2020
}
2121
```
2222

@@ -27,8 +27,8 @@ Several integrations require additional client-side add-on libraries called "kit
2727
```groovy
2828
dependencies {
2929
implementation (
30-
'com.mparticle:android-example-kit:5.45.2',
31-
'com.mparticle:android-another-kit:5.45.2'
30+
'com.mparticle:android-example-kit:5.46.0',
31+
'com.mparticle:android-another-kit:5.46.0'
3232
)
3333
}
3434
```

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ subprojects {
3535

3636
allprojects {
3737
group = 'com.mparticle'
38-
version = '5.45.2-SNAPSHOT'
38+
version = '5.46.0-SNAPSHOT'
3939
if (project.hasProperty('isRelease') && project.isRelease) {
4040
version = version.toString().replace("-SNAPSHOT", "")
4141
}

0 commit comments

Comments
 (0)