Skip to content

Commit

Permalink
Merge pull request #234 from urbanairship/release-9.0.1
Browse files Browse the repository at this point in the history
Release 9.0.1
  • Loading branch information
crow authored Nov 28, 2024
2 parents 4b5a747 + e4ae9e8 commit 6e3e769
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 13 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,17 @@ jobs:
- name: Run CI
run: bash ./scripts/run_ci_tasks.sh

release-plugin:
release-plugin-pub-dev:
needs: [ ci ]
permissions:
id-token: write # Required for authentication using OIDC
uses: dart-lang/setup-dart/.github/workflows/publish.yml@v1

release-plugin-github:
runs-on: ubuntu-latest
needs: [ ci ]
permissions:
contents: write
steps:
- uses: actions/checkout@v3

Expand Down Expand Up @@ -62,9 +68,6 @@ jobs:
flutter-version: ${{ env.FLUTTER_VERSION }}
- run: flutter pub get

- name: Publish Dart/Flutter package
run: flutter pub publish -f

- name: Github Release
uses: actions/[email protected]
env:
Expand All @@ -83,10 +86,10 @@ jobs:
type: ${{ job.status }}
job_name: "Failed to release Flutter :("
url: ${{ secrets.MOBILE_SLACK_WEBHOOK }}

release-docs:
runs-on: macos-14-xlarge
needs: [ ci, release-plugin ]
needs: [ ci, release-plugin-pub-dev, release-plugin-github ]
steps:
- uses: actions/checkout@v3

Expand Down Expand Up @@ -129,4 +132,4 @@ jobs:
with:
type: ${{ job.status }}
job_name: ":raised_hands: Airship Flutter Plugin Released! :raised_hands:"
url: ${{ secrets.MOBILE_SLACK_WEBHOOK }}
url: ${{ secrets.MOBILE_SLACK_WEBHOOK }}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Flutter Plugin Changelog

## Version 9.0.1 - November 26, 2024

Patch release that updates the iOS SDK to 18.12.2 and Android SDK to 18.4.2

### Changes
- Updated Android SDK to 18.4.2.
- Updated iOS SDK to 18.12.2.

## Version 9.0.0 - November 14, 2024

Major version release that drops support for v1 embeddings.
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
ext.kotlin_version = '1.9.0'
ext.coroutine_version = '1.5.2'
ext.datastore_preferences_version = '1.1.1'
ext.airship_framework_proxy_version = '11.0.4'
ext.airship_framework_proxy_version = '11.0.6'


repositories {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ package com.airship.flutter

class AirshipPluginVersion {
companion object {
const val AIRSHIP_PLUGIN_VERSION = "9.0.0"
const val AIRSHIP_PLUGIN_VERSION = "9.0.1"
}
}
2 changes: 1 addition & 1 deletion ios/Classes/AirshipPluginVersion.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Foundation

class AirshipPluginVersion {
static let pluginVersion = "9.0.0"
static let pluginVersion = "9.0.1"
}
4 changes: 2 additions & 2 deletions ios/airship_flutter.podspec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

AIRSHIP_FLUTTER_VERSION="9.0.0"
AIRSHIP_FLUTTER_VERSION="9.0.1"

#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
Expand All @@ -20,7 +20,7 @@ Airship flutter plugin.
s.public_header_files = 'Classes/**/*.h'
s.dependency 'Flutter'
s.ios.deployment_target = "14.0"
s.dependency "AirshipFrameworkProxy", "11.0.4"
s.dependency "AirshipFrameworkProxy", "11.0.6"
s.swift_version = "5.0.0"
end

2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: airship_flutter
description: "Cross-platform plugin interface for the native Airship iOS and Android SDKs. Simplifies adding Airship to Flutter apps."
version: 9.0.0
version: 9.0.1
homepage: https://www.airship.com/
repository: https://github.com/urbanairship/airship-flutter
issue_tracker: https://github.com/urbanairship/airship-flutter/issues
Expand Down

0 comments on commit 6e3e769

Please sign in to comment.