Skip to content

Commit

Permalink
Version 3.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jtreanor committed Jul 29, 2016
1 parent 66b19f1 commit e0b9c11
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Intercom for Cordova/PhoneGap

# 3.0.3 (2016-07-27)

* Updated Intercom for iOS to [3.0.4](https://github.com/intercom/intercom-ios/releases/tag/3.0.4).
* Fixed [#64](https://github.com/intercom/intercom-cordova/issues/64).
* Changed minimum Cordova version to 4.0.0.

# 3.0.2 (2016-07-27)

* Fixed [#63](https://github.com/intercom/intercom-cordova/issues/63).
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ To install the plugin in your Cordova app, run the following:

To add the plugin to your PhoneGap app, add the following to your `config.xml`:

<plugin name="cordova-plugin-intercom" version="~3.0.2" />
<plugin name="cordova-plugin-intercom" version="~3.0.3" />

## Configuring Intercom

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cordova-plugin-intercom",
"version": "3.0.2",
"version": "3.0.3",
"description": "Official Cordova/PhoneGap plugin for Intercom",
"cordova": {
"id": "cordova-plugin-intercom",
Expand All @@ -23,15 +23,15 @@
"engines": [
{
"name": "cordova",
"version": ">=3.0.2"
"version": ">=3.0.3"
},
{
"name": "cordova-android",
"version": ">=4.0.0"
},
{
"name": "cordova-ios",
"version": ">=3.0.2"
"version": ">=3.0.3"
}
],
"author": "Intercom",
Expand Down
2 changes: 1 addition & 1 deletion 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="3.0.2" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<plugin id="cordova-plugin-intercom" version="3.0.3" 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 src/android/IntercomBridge.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ private void setUpIntercom() {
try {
Context context = IntercomBridge.this.cordova.getActivity().getApplicationContext();

CordovaHeaderInterceptor.setCordovaVersion(context, "3.0.2");
CordovaHeaderInterceptor.setCordovaVersion(context, "3.0.3");

String senderId = IntercomBridge.this.preferences.getString("intercom-android-sender-id", null);
if (senderId != null) {
Expand Down
2 changes: 1 addition & 1 deletion 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:@"3.0.2"];
[Intercom setCordovaVersion:@"3.0.3"];
#ifdef DEBUG
[Intercom enableLogging];
#endif
Expand Down

0 comments on commit e0b9c11

Please sign in to comment.