Skip to content

Commit

Permalink
Merge pull request #430 from urbanairship/release-15.2.2
Browse files Browse the repository at this point in the history
Release 15.2.2
  • Loading branch information
oristanovic authored May 17, 2024
2 parents efdef07 + aff0b95 commit 908e6ed
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 9 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Cordova Plugin Changelog

## Version 15.2.2 May 16, 2024
Patch release that updates to latest Airship SDKs.

### Changes
- Updated iOS SDK to 18.2.2

## Version 15.2.1 May 13, 2024
Patch release that updates to latest Airship SDKs and fixes issues with methods that take an optional string parameter on Android.

Expand Down
2 changes: 1 addition & 1 deletion cordova-airship-hms/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ua/cordova-airship-hms",
"version": "15.2.1",
"version": "15.2.2",
"description": "Airship HMS Cordova plugin",
"cordova": {
"id": "@ua/cordova-airship-hms",
Expand Down
4 changes: 2 additions & 2 deletions cordova-airship-hms/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='utf-8'?>
<plugin id="@ua/cordova-airship-hms" version="15.2.1" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<plugin id="@ua/cordova-airship-hms" version="15.2.2" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">

<name>Airship HMS</name>
<description>Airship HMS Cordova plugin</description>
Expand All @@ -12,7 +12,7 @@
<engine name="cordova" version=">=9.0.1"/>
</engines>

<dependency id="@ua/cordova-airship" version="15.2.1"/>
<dependency id="@ua/cordova-airship" version="15.2.2"/>

<!-- android -->
<platform name="android">
Expand Down
2 changes: 1 addition & 1 deletion cordova-airship/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ua/cordova-airship",
"version": "15.2.1",
"version": "15.2.2",
"description": "Airship Cordova plugin",
"cordova": {
"id": "@ua/cordova-airship",
Expand Down
4 changes: 2 additions & 2 deletions cordova-airship/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<plugin id="@ua/cordova-airship" version="15.2.1" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<plugin id="@ua/cordova-airship" version="15.2.2" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">

<name>Airship</name>
<description>Airship Cordova plugin</description>
Expand Down Expand Up @@ -130,7 +130,7 @@
<source url="https://cdn.cocoapods.org/"/>
</config>
<pods use-frameworks="true">
<pod name="AirshipFrameworkProxy" spec="6.2.0" />
<pod name="AirshipFrameworkProxy" spec="6.2.2" />
</pods>
</podspec>
</platform>
Expand Down
2 changes: 1 addition & 1 deletion cordova-airship/src/android/AirshipCordovaVersion.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
package com.urbanairship.cordova

object AirshipCordovaVersion {
var version = "15.2.1"
var version = "15.2.2"
}
2 changes: 1 addition & 1 deletion cordova-airship/src/android/build-extras.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dependencies {
api "com.urbanairship.android:airship-framework-proxy:6.2.0"
api "com.urbanairship.android:airship-framework-proxy:6.2.2"
}

cdvPluginPostBuildExtras.push({
Expand Down
2 changes: 1 addition & 1 deletion cordova-airship/src/ios/AirshipCordovaVersion.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
import Foundation

class AirshipCordovaVersion {
static let version = "15.2.1"
static let version = "15.2.2"
}

0 comments on commit 908e6ed

Please sign in to comment.