Skip to content

Commit

Permalink
[MOBILE-1508] Release 11.0 (#354)
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianBatchelder authored Jun 3, 2020
1 parent f707fab commit a564029
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 202 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Cordova Plugin Changelog

## Version 11.0.0 - June 3, 2020
Major release adding support for named user and date attributes.

### Changes
- Added support for named user attributes.
- Added support for date attributes.
- Updated iOS SDK to 13.3.2
- Updated Android SDK to 13.1.2

## Version 10.1.2 - May 5, 2020
Patch release updating to the latest Airship SDKs and addressing issues with YouTube video support and channel registration on iOS.

Expand Down
11 changes: 6 additions & 5 deletions DEV_README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
Update Cordova Instructions:
* In the root directory run:
`node scripts/update_cordova.js <plugin version> -a <android SDK version> -i <iOS SDK version>`

* For help run `node scripts/update_cordova.js --help`

* Plugin version:
* In the root directory run: `scripts/update_version.sh <plugin version>`
* iOS SDK version
* update plugin.xml with new iOS version, i.e. 6.4.0
* Android SDK version
* update src/android/build-extras.gradle to point to the latest android versions (our SDK & external libraries)

Android limitations:
- We need to stay compatible with Java 1.6. Try to not use `<>` and Strings in a switch statement.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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

Expand Down Expand Up @@ -36,7 +36,7 @@
<config-file parent="/manifest/application" target="AndroidManifest.xml">
<meta-data
android:name="com.urbanairship.cordova.version"
android:value="10.1.2"/>
android:value="11.0.0"/>

<meta-data
android:name="com.urbanairship.autopilot"
Expand Down Expand Up @@ -138,7 +138,7 @@
</config-file>

<config-file target="*-Info.plist" parent="UACordovaPluginVersion">
<string>10.1.2</string>
<string>11.0.0</string>
</config-file>

<config-file parent="/widget" target="config.xml">
Expand Down Expand Up @@ -189,7 +189,7 @@
<source url="https://github.com/CocoaPods/Specs.git"/>
</config>
<pods use-frameworks="true">
<pod name="Airship" spec="13.3.0" />
<pod name="Airship" spec="13.3.2" />
</pods>
</podspec>

Expand Down
190 changes: 0 additions & 190 deletions scripts/update_cordova.js

This file was deleted.

File renamed without changes.
2 changes: 1 addition & 1 deletion src/android/build-extras.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ allprojects {
}

dependencies {
def airshipVersion = "13.1.0"
def airshipVersion = "13.1.2"
implementation "com.urbanairship.android:urbanairship-fcm:$airshipVersion"
implementation "com.urbanairship.android:urbanairship-message-center:$airshipVersion"
implementation "com.urbanairship.android:urbanairship-automation:$airshipVersion"
Expand Down

0 comments on commit a564029

Please sign in to comment.