Skip to content

Commit 35d6fa3

Browse files
authored
Release 17.0.3 (#1306)
1 parent 93ad89a commit 35d6fa3

File tree

4 files changed

+17
-2
lines changed

4 files changed

+17
-2
lines changed

.github/workflows/publish-docs.yml

+7
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,13 @@ jobs:
7979
runs-on: ubuntu-latest
8080
needs: prepare-docs
8181
steps:
82+
# Docs should already be built and uploaded at this point, but we still need
83+
# this step in order for google-github-actions/auth to work in upload step.
84+
- name: Checkout repo
85+
uses: actions/checkout@v3
86+
with:
87+
ref: refs/tags/${{ inputs.version }}
88+
8289
- name: Download packaged docs artifacts
8390
id: download_docs
8491
uses: actions/download-artifact@v3

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

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

5+
## Version 17.0.3, July 12, 2023
6+
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.
7+
8+
### Changes
9+
- Added a `getPushProviderType()` method on `PushManager`, to allow the current push provider to be determined at runtime.
10+
- Fixed a rendering issue with Scene and Survey buttons when using more than one line of text for the label.
11+
- Fixed a potential crash that could occur when displaying a modal or fullscreen Scene or Survey.
12+
513
## Version 17.0.2, June 28, 2023
614
Patch release that improves Scene and Survey rendering for layouts that ignore safe areas.
715

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Airship SDK for Android.
1818

1919
```
2020
dependencies {
21-
def airshipVersion = "17.0.2"
21+
def airshipVersion = "17.0.3"
2222
2323
// FCM push provider
2424
implementation "com.urbanairship.android:urbanairship-fcm:$airshipVersion"

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
buildscript {
22
ext {
33
// Airship Version - major.minor.patch
4-
airshipVersion = '17.0.2'
4+
airshipVersion = '17.0.3'
55

66
// Airship Version Qualifier beta, release, etc...
77
// airshipVersionQualifier = "beta"

0 commit comments

Comments
 (0)