Skip to content

Commit

Permalink
Release version 7.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
liutingdu committed Sep 6, 2019
1 parent 2453b90 commit 2f3ebe4
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 7 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
# Intercom for Cordova/PhoneGap

## 7.1.1 (2019-09-05)

* * The Intercom Cordova plugin has been updated to use v5.4.1 of the Intercom Android SDK as the latest version. This is because v5.5.0 of the Intercom Android SDK targets Android 10, which is currently unsupported by Cordova.

## 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 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!

Expand All @@ -30,7 +34,7 @@ The new Intercom mobile SDK brings the Messenger Home to your mobile application

* `displayConversationsList` - Use `displayMessenger` instead.

These deprecated methods will still work, but will be removed in a future release.
These deprecated methods will still work, but will be removed in a future release.

## 6.0.0 (2018-06-12)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
<plugin name="cordova-plugin-intercom" version="~7.1.0" />
<plugin name="cordova-plugin-intercom" version="~7.1.1" />
```
### Ionic

Expand Down
2 changes: 1 addition & 1 deletion intercom-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cordova-plugin-intercom",
"version": "7.1.0",
"version": "7.1.1",
"description": "Official Cordova/PhoneGap plugin for Intercom",
"cordova": {
"id": "cordova-plugin-intercom",
Expand Down
2 changes: 1 addition & 1 deletion intercom-plugin/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="cordova-plugin-intercom" version="7.1.0" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<plugin id="cordova-plugin-intercom" version="7.1.1" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<name>Intercom</name>
<author>Intercom</author>
<license>MIT License</license>
Expand Down
2 changes: 1 addition & 1 deletion intercom-plugin/src/android/IntercomBridge.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ private void setUpIntercom() {
try {
Context context = cordova.getActivity().getApplicationContext();

CordovaHeaderInterceptor.setCordovaVersion(context, "7.1.0");
CordovaHeaderInterceptor.setCordovaVersion(context, "7.1.1");

switch (IntercomPushManager.getInstalledModuleType()) {
case FCM: {
Expand Down
2 changes: 1 addition & 1 deletion intercom-plugin/src/ios/IntercomBridge.m
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ + (void)setCordovaVersion:(NSString *)v;
@implementation IntercomBridge : CDVPlugin

- (void)pluginInitialize {
[Intercom setCordovaVersion:@"7.1.0"];
[Intercom setCordovaVersion:@"7.1.1"];
#ifdef DEBUG
[Intercom enableLogging];
#endif
Expand Down

0 comments on commit 2f3ebe4

Please sign in to comment.