Skip to content

Commit

Permalink
Release 16.10.0 (#1270)
Browse files Browse the repository at this point in the history
  • Loading branch information
jyaganeh authored Jun 2, 2023
1 parent b2be890 commit 2a84126
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ jobs:
urbanairship-automation:publishProductionPublicationToSonatypeRepository
urbanairship-message-center:publishProductionPublicationToSonatypeRepository
urbanairship-location:publishProductionPublicationToSonatypeRepository
urbanairship-live-update:publishProductionPublicationToSonatypeRepository
urbanairship-ads-identifier:publishProductionPublicationToSonatypeRepository
urbanairship-preference:publishProductionPublicationToSonatypeRepository
urbanairship-accengage:publishProductionPublicationToSonatypeRepository
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

[Migration Guides](https://github.com/urbanairship/android-library/tree/main/documentation/migration)

## Version 16.10.0, June 2, 2023

Minor release that adds support for Android Live Updates, which bring functionality similar to iOS Live Activities to the Android platform.
Live Updates make it easier to keep information updated in real time instead of receiving multiple notifications from the same app for things like a game’s latest score, food delivery status, or rideshare arrivals.

## Changes
- Added new `urbanairship-live-update` module.

## Version 16.9.3, May 24, 2023

Patch release that includes fixes for Preference Center, Scenes & Surveys, and Message Center.
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Airship SDK for Android.

```
dependencies {
def airshipVersion = "16.9.3"
def airshipVersion = "16.10.0"
// FCM push provider
implementation "com.urbanairship.android:urbanairship-fcm:$airshipVersion"
Expand All @@ -28,6 +28,9 @@ Airship SDK for Android.
// In-App Automation
implementation "com.urbanairship.android:urbanairship-automation:$airshipVersion"
// Live Updates
implementation "com.urbanairship.android:urbanairship-live-update:$airshipVersion"
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
buildscript {
ext {
// Airship Version - major.minor.patch
airshipVersion = '16.9.3'
airshipVersion = '16.10.0'

// Airship Version Qualifier beta, release, etc...
// airshipVersionQualifier = "beta"
Expand Down

0 comments on commit 2a84126

Please sign in to comment.