From 209042b158400563e3436d255052f4503b96dbdb Mon Sep 17 00:00:00 2001 From: nymerias Date: Wed, 17 Jul 2019 13:33:43 -0700 Subject: [PATCH] release version 7.1.0 --- CHANGELOG.md | 12 ++++++++++++ README.md | 2 +- intercom-plugin/package.json | 2 +- intercom-plugin/plugin.xml | 2 +- intercom-plugin/src/android/IntercomBridge.java | 2 +- intercom-plugin/src/ios/IntercomBridge.m | 2 +- 6 files changed, 17 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 09de551..dbf221d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Intercom for Cordova/PhoneGap +## 7.1.0 (2019-07-17) + +* Updated to cordova-android 8.0.0 and cordova-ios 5.0.0 +* Removed GCM as [Google has removed GCM](https://developers.google.com/cloud-messaging/faq) +* Updated Firebase version +* Updated our Example app to use the newer versions of Cordova +* Now using the latest versions of the Intercom [Android SDK](https://github.com/intercom/intercom-android/releases) and [iOS SDK](https://github.com/intercom/intercom-android/releases) with support for Custom Bots! + +## 7.0.0 (2019-06-20) + +* Cordova 9 support + ## 6.2.0 (2018-12-18) * Support sending a push token to Intercom manually with the addition of the method `sendPushTokenToIntercom` diff --git a/README.md b/README.md index 6e7be97..5b74769 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ cordova plugin add cordova-plugin-intercom To add the plugin to your PhoneGap app, add the following to your `config.xml`: ```xml - + ``` ### Ionic diff --git a/intercom-plugin/package.json b/intercom-plugin/package.json index e424e69..dece6b1 100644 --- a/intercom-plugin/package.json +++ b/intercom-plugin/package.json @@ -1,6 +1,6 @@ { "name": "cordova-plugin-intercom", - "version": "7.0.0", + "version": "7.1.0", "description": "Official Cordova/PhoneGap plugin for Intercom", "cordova": { "id": "cordova-plugin-intercom", diff --git a/intercom-plugin/plugin.xml b/intercom-plugin/plugin.xml index 3ea759d..a8c56ab 100644 --- a/intercom-plugin/plugin.xml +++ b/intercom-plugin/plugin.xml @@ -1,5 +1,5 @@ - + Intercom Intercom MIT License diff --git a/intercom-plugin/src/android/IntercomBridge.java b/intercom-plugin/src/android/IntercomBridge.java index e899310..812008e 100644 --- a/intercom-plugin/src/android/IntercomBridge.java +++ b/intercom-plugin/src/android/IntercomBridge.java @@ -60,7 +60,7 @@ private void setUpIntercom() { try { Context context = cordova.getActivity().getApplicationContext(); - CordovaHeaderInterceptor.setCordovaVersion(context, "7.0.0"); + CordovaHeaderInterceptor.setCordovaVersion(context, "7.1.0"); switch (IntercomPushManager.getInstalledModuleType()) { case FCM: { diff --git a/intercom-plugin/src/ios/IntercomBridge.m b/intercom-plugin/src/ios/IntercomBridge.m index ca50731..0041850 100644 --- a/intercom-plugin/src/ios/IntercomBridge.m +++ b/intercom-plugin/src/ios/IntercomBridge.m @@ -9,7 +9,7 @@ + (void)setCordovaVersion:(NSString *)v; @implementation IntercomBridge : CDVPlugin - (void)pluginInitialize { - [Intercom setCordovaVersion:@"7.0.0"]; + [Intercom setCordovaVersion:@"7.1.0"]; #ifdef DEBUG [Intercom enableLogging]; #endif