diff --git a/CHANGELOG.md b/CHANGELOG.md index dba75b5..fbe731e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Capacitor Plugin Changelog +## Version 3.1.1 - January 13, 2025 + +Patch release that updates the Android SDK to 18.6.0 and the iOS SDK to 18.14.2 + +### Changes +- Updated Android SDK to [18.6.0](https://github.com/urbanairship/android-library/releases/tag/18.6.0) +- Updated iOS SDK to [18.14.2](https://github.com/urbanairship/ios-library/releases/tag/18.14.2) + + ## Version 3.1.0 - December 6, 2024 Minor release that updates the Android Airship SDK to 18.5.0 and iOS Airship SDK to 18.13.0 diff --git a/UaCapacitorAirship.podspec b/UaCapacitorAirship.podspec index e88f82a..c723f67 100644 --- a/UaCapacitorAirship.podspec +++ b/UaCapacitorAirship.podspec @@ -13,6 +13,6 @@ Pod::Spec.new do |s| s.ios.deployment_target = '14.0' s.dependency 'Capacitor' s.swift_version = '5.1' - s.dependency "AirshipFrameworkProxy", "11.1.0" + s.dependency "AirshipFrameworkProxy", "11.2.2" s.source_files = 'ios/Plugin/**/*.{swift,h,m,c,cc,mm,cpp}' end diff --git a/android/src/main/java/com/airship/capacitor/AirshipCapacitorVersion.kt b/android/src/main/java/com/airship/capacitor/AirshipCapacitorVersion.kt index cfd7948..21098a6 100644 --- a/android/src/main/java/com/airship/capacitor/AirshipCapacitorVersion.kt +++ b/android/src/main/java/com/airship/capacitor/AirshipCapacitorVersion.kt @@ -3,5 +3,5 @@ package com.airship.capacitor object AirshipCapacitorVersion { - var version = "3.1.0" + var version = "3.1.1" } \ No newline at end of file diff --git a/ios/Plugin/AirshipCapacitorVersion.swift b/ios/Plugin/AirshipCapacitorVersion.swift index 7498600..c55c072 100644 --- a/ios/Plugin/AirshipCapacitorVersion.swift +++ b/ios/Plugin/AirshipCapacitorVersion.swift @@ -3,5 +3,5 @@ import Foundation class AirshipCapacitorVersion { - static let version = "3.1.0" + static let version = "3.1.1" } diff --git a/ios/Podfile b/ios/Podfile index 35b5c54..d537ee0 100644 --- a/ios/Podfile +++ b/ios/Podfile @@ -5,7 +5,7 @@ def capacitor_pods use_frameworks! pod 'Capacitor', :path => '../node_modules/@capacitor/ios' pod 'CapacitorCordova', :path => '../node_modules/@capacitor/ios' - pod 'AirshipFrameworkProxy', '11.1.0' + pod 'AirshipFrameworkProxy', '11.2.2' end target 'Plugin' do diff --git a/package-lock.json b/package-lock.json index cce00cb..b208105 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@ua/capacitor-airship", - "version": "3.1.0", + "version": "3.1.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@ua/capacitor-airship", - "version": "3.1.0", + "version": "3.1.1", "license": "Apache-2.0", "devDependencies": { "@capacitor/android": "^6.0.0", diff --git a/package.json b/package.json index 055ed81..1c3620d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ua/capacitor-airship", - "version": "3.1.0", + "version": "3.1.1", "description": "Airship capacitor plugin", "main": "dist/plugin.cjs.js", "module": "dist/esm/index.js", diff --git a/scripts/update_changelog.sh b/scripts/update_changelog.sh old mode 100644 new mode 100755