Skip to content

Commit e151076

Browse files
committed
Release 18.6.1
1 parent 9eb76ae commit e151076

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

.github/workflows/publish-docs.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
# Download pre-packaged docs artifacts if they were published by the release workflow.
2828
- name: Download pre-packaged docs artifacts
2929
id: download_docs
30-
uses: actions/download-artifact@v3
30+
uses: actions/download-artifact@v4
3131
continue-on-error: true
3232
with:
3333
name: packaged-docs-${{ inputs.version }}
@@ -69,7 +69,7 @@ jobs:
6969
7070
- name: Upload packaged docs artifacts
7171
if: ${{ steps.download_docs.outcome == 'failure' }}
72-
uses: actions/upload-artifact@v3
72+
uses: actions/upload-artifact@v4
7373
with:
7474
name: packaged-docs-${{ inputs.version }}
7575
retention-days: 1
@@ -91,7 +91,7 @@ jobs:
9191

9292
- name: Download packaged docs artifacts
9393
id: download_docs
94-
uses: actions/download-artifact@v3
94+
uses: actions/download-artifact@v4
9595
with:
9696
name: packaged-docs-${{ inputs.version }}
9797
path: build/docs

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
prerelease: false
9090

9191
- name: Upload java doc assets
92-
uses: actions/upload-artifact@v3
92+
uses: actions/upload-artifact@v4
9393
with:
9494
name: packaged-docs-${{ steps.get_version.outputs.VERSION }}
9595
retention-days: 1

CHANGELOG.md

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

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

5+
## Version 18.6.1 February 25, 2025
6+
Patch release to fix a casting exception with Embedded Content.
7+
8+
### Changes
9+
- Fixed exception due to a bad cast when using Embedded Content.
10+
511
## Version 18.6.0 December 19, 2024
612
Minor release that updates how Feature Flags are resolved, improves Scene rendering on Android 15,
713
and fixes potential exceptions related to PermissionsManager and PermissionDelegates.

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 = '18.6.0'
4+
airshipVersion = '18.6.1'
55

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

0 commit comments

Comments
 (0)