diff --git a/CHANGELOG.md b/CHANGELOG.md index 818d9ce..ff98e04 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Intercom for Cordova/PhoneGap +## 4.1.1 (2017-11-15) + +* Fixed issue with diagnostic messages on Android: [#219](https://github.com/intercom/intercom-cordova/issues/219). + ## 4.1.0 (2017-11-02) * Updated Intercom for Android to 4.1.x diff --git a/README.md b/README.md index 02db50a..827ff33 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,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 547c506..48f98b6 100644 --- a/intercom-plugin/package.json +++ b/intercom-plugin/package.json @@ -1,6 +1,6 @@ { "name": "cordova-plugin-intercom", - "version": "4.1.0", + "version": "4.1.1", "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 683669e..aad5c61 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 b864132..949112b 100644 --- a/intercom-plugin/src/android/IntercomBridge.java +++ b/intercom-plugin/src/android/IntercomBridge.java @@ -68,7 +68,7 @@ private void setUpIntercom() { try { Context context = IntercomBridge.this.cordova.getActivity().getApplicationContext(); - CordovaHeaderInterceptor.setCordovaVersion(context, "4.1.0"); + CordovaHeaderInterceptor.setCordovaVersion(context, "4.1.1"); switch (IntercomPushManager.getInstalledModuleType()) { case GCM: { diff --git a/intercom-plugin/src/ios/IntercomBridge.m b/intercom-plugin/src/ios/IntercomBridge.m index d74d8a4..eeac897 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:@"4.1.0"]; + [Intercom setCordovaVersion:@"4.1.1"]; #ifdef DEBUG [Intercom enableLogging]; #endif