diff --git a/CHANGELOG.md b/CHANGELOG.md index 86d224ec7..7a2944ccf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ [Migration Guides](https://github.com/urbanairship/android-library/tree/main/documentation/migration) +## Version 17.2.1 September 7, 2023 +Patch release that hardens the Analytics database against potential SQL crashes. + +### Changes +- Hardened Analytics database against potential SQL crashes. + ## Version 17.2.0 August 25, 2023 Minor release that fixes a reporting issue with hold out groups and In-App Messaging. 17.2.0 will be the minimum version required for global hold out groups. @@ -15,7 +21,6 @@ Minor release that adds support for global holdout groups in In-App experiences - Added new feature flag module `urbanairship-feature-flag` - Added support for global holdout groups - ## Version 17.0.3, July 12, 2023 Patch release that fixes a pair of issues with Scenes and Surveys, and adds a new `getPushProviderType()` method on `PushManager`. Apps that make use of Scenes or Surveys should update. diff --git a/README.md b/README.md index 221ff6430..f2cdf9cbd 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Airship SDK for Android. ``` dependencies { - def airshipVersion = "17.0.3" + def airshipVersion = "17.2.1" // FCM push provider implementation "com.urbanairship.android:urbanairship-fcm:$airshipVersion" diff --git a/build.gradle b/build.gradle index 9578dee0d..01bfe15e1 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,7 @@ buildscript { ext { // Airship Version - major.minor.patch - airshipVersion = '17.2.0' + airshipVersion = '17.2.1' // Airship Version Qualifier beta, release, etc... // airshipVersionQualifier = "beta"