diff --git a/CHANGELOG.md b/CHANGELOG.md
index d6fe222..67c9b7d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,17 @@
# Intercom for Cordova/PhoneGap
+## 14.0.1 (2024-06-014)
+
+π Enhancements
+* It is now possible to send push notifications to the Simulator. (iOS)
+
+π Bug Fixes
+* Fixed an issue where it was not possible to close modal view that was opened from a Messenger App. (iOS)
+* The message composer is now always displayed on the conversation screen when appropriate.(iOS)
+* When a conversation is closed, form entry is disabled on the conversation screen. (iOS & Android)
+* Made some minor UI bug fixes. (iOS)
+* Fixed the issue where push open stats werenβt tracked correctly. (Android)
+
## 14.0.0 (2024-06-05)
π Enhancements
* Updated Intercom Cordova Plugin to support the latest versions of the core iOS and Android SDKs.
diff --git a/intercom-plugin/package-lock.json b/intercom-plugin/package-lock.json
index 9a222aa..a3f884a 100644
--- a/intercom-plugin/package-lock.json
+++ b/intercom-plugin/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "cordova-plugin-intercom",
- "version": "14.0.0",
+ "version": "14.0.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "cordova-plugin-intercom",
- "version": "14.0.0",
+ "version": "14.0.1",
"license": "MIT License",
"dependencies": {
"q": "^1.5.1"
diff --git a/intercom-plugin/package.json b/intercom-plugin/package.json
index 0e3546d..0ad5a6e 100644
--- a/intercom-plugin/package.json
+++ b/intercom-plugin/package.json
@@ -1,6 +1,6 @@
{
"name": "cordova-plugin-intercom",
- "version": "14.0.0",
+ "version": "14.0.1",
"description": "Official Cordova plugin for Intercom",
"author": "Intercom",
"license": "MIT License",
diff --git a/intercom-plugin/plugin.xml b/intercom-plugin/plugin.xml
index 08b34e3..6fc5bcc 100644
--- a/intercom-plugin/plugin.xml
+++ b/intercom-plugin/plugin.xml
@@ -68,7 +68,7 @@
-
+
diff --git a/intercom-plugin/scripts/prepareCocoaPods.js b/intercom-plugin/scripts/prepareCocoaPods.js
index 5d3ea16..c035272 100644
--- a/intercom-plugin/scripts/prepareCocoaPods.js
+++ b/intercom-plugin/scripts/prepareCocoaPods.js
@@ -4,8 +4,8 @@ module.exports = function() {
var deferral = new q.defer();
- console.log('Updating CocoaPods specs repo');
- exec('pod repo update master', function(error, stdout, stderr) {
+ console.log('Fetching latest CocoaPods specs repo ');
+ exec('pod repo update --verbose', function(error, stdout, stderr) {
deferral.resolve();
});
diff --git a/intercom-plugin/src/android/intercom.gradle b/intercom-plugin/src/android/intercom.gradle
index 5321d57..0e907c0 100644
--- a/intercom-plugin/src/android/intercom.gradle
+++ b/intercom-plugin/src/android/intercom.gradle
@@ -32,14 +32,14 @@ repositories {
}
dependencies {
- implementation 'io.intercom.android:intercom-sdk-base:15.9.0'
+ implementation 'io.intercom.android:intercom-sdk-base:15.9.1'
implementation 'com.google.code.gson:gson:2.8.6'
implementation 'com.intercom:twig:1.3.0'
implementation 'org.jetbrains:annotations:13.0'
implementation 'com.squareup.okhttp3:okhttp:4.9.0'
if (pushType == 'fcm' || pushType == 'fcm-without-build-plugin') {
implementation 'com.google.firebase:firebase-messaging:20.+'
- implementation 'io.intercom.android:intercom-sdk-fcm:15.9.0'
+ implementation 'io.intercom.android:intercom-sdk-fcm:15.9.1'
}
}