Skip to content

Commit

Permalink
Release 17.0.3 (#1306)
Browse files Browse the repository at this point in the history
  • Loading branch information
jyaganeh authored Jul 12, 2023
1 parent 93ad89a commit 35d6fa3
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 2 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/publish-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,13 @@ jobs:
runs-on: ubuntu-latest
needs: prepare-docs
steps:
# Docs should already be built and uploaded at this point, but we still need
# this step in order for google-github-actions/auth to work in upload step.
- name: Checkout repo
uses: actions/checkout@v3
with:
ref: refs/tags/${{ inputs.version }}

- name: Download packaged docs artifacts
id: download_docs
uses: actions/download-artifact@v3
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 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.

### Changes
- Added a `getPushProviderType()` method on `PushManager`, to allow the current push provider to be determined at runtime.
- Fixed a rendering issue with Scene and Survey buttons when using more than one line of text for the label.
- Fixed a potential crash that could occur when displaying a modal or fullscreen Scene or Survey.

## Version 17.0.2, June 28, 2023
Patch release that improves Scene and Survey rendering for layouts that ignore safe areas.

Expand Down
2 changes: 1 addition & 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 = "17.0.2"
def airshipVersion = "17.0.3"
// FCM push provider
implementation "com.urbanairship.android:urbanairship-fcm:$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 = '17.0.2'
airshipVersion = '17.0.3'

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

0 comments on commit 35d6fa3

Please sign in to comment.