Skip to content

Commit f94449a

Browse files
author
Aaron Lopez
authored
Merge pull request #535 from BranchMetrics/plugin-xml
RC 3.1.5
2 parents 6beb126 + 8884bd1 commit f94449a

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
1+
<a name="3.1.5"></a>
2+
# [3.1.5](https://github.com/BranchMetrics/cordova-ionic-phonegap-branch-deep-linking/compare/v3.1.4...v3.1.5) (2018-12-05)
3+
4+
* Fix iOS dependency issue.
5+
16
<a name="3.1.4"></a>
27
# [3.1.4](https://github.com/BranchMetrics/cordova-ionic-phonegap-branch-deep-linking/compare/v3.1.3...v3.1.4) (2018-12-04)
38

4-
* Rever Cocoapods & Gradle support temporarily.([#478](https://github.com/BranchMetrics/cordova-ionic-phonegap-branch-deep-linking/pull/531))
9+
* Revert Cocoapods & Gradle support temporarily.([#478](https://github.com/BranchMetrics/cordova-ionic-phonegap-branch-deep-linking/pull/531))
510

611
<a name="3.1.3"></a>
712
# [3.1.3](https://github.com/BranchMetrics/cordova-ionic-phonegap-branch-deep-linking/compare/v3.1.0...v3.1.3) (2018-11-26)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "branch-cordova-sdk",
33
"description": "Branch Metrics Cordova SDK",
44
"main": "src/index.js",
5-
"version": "3.1.4",
5+
"version": "3.1.5",
66
"homepage": "https://github.com/BranchMetrics/cordova-ionic-phonegap-branch-deep-linking",
77
"repository": {
88
"type": "git",

plugin.template.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ SOFTWARE.
2424
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
2525
xmlns:android="http://schemas.android.com/apk/res/android"
2626
id="branch-cordova-sdk"
27-
version="3.1.4">
27+
version="3.1.5">
2828

2929
<!-- DO NOT EDIT THIS FILE. MAKE ALL CHANGES TO plugin.template.xml INSTEAD -->
3030

plugin.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ SOFTWARE.
2424
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
2525
xmlns:android="http://schemas.android.com/apk/res/android"
2626
id="branch-cordova-sdk"
27-
version="3.1.4">
27+
version="3.1.5">
2828

2929
<!-- DO NOT EDIT THIS FILE. MAKE ALL CHANGES TO plugin.template.xml INSTEAD -->
3030

@@ -43,7 +43,7 @@ SOFTWARE.
4343

4444
<!-- Hooks -->
4545
<hook src="src/scripts/hooks/beforePluginInstall.js" type="before_plugin_install" />
46-
46+
<hook src="src/scripts/hooks/beforePrepare.js" type="after_plugin_install" />
4747
<hook src="src/scripts/hooks/afterPrepare.js" type="after_plugin_add" />
4848
<hook src="src/scripts/hooks/beforePrepare.js" type="before_prepare" />
4949
<hook src="src/scripts/hooks/afterPrepare.js" type="after_prepare" />

src/scripts/hooks/beforePluginInstall.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88

99
// builds before plugin install hooks
1010
function run(context) {
11-
return nodeDependencies.install(context);
11+
nodeDependencies.install(context);
1212
}
1313
})();

0 commit comments

Comments
 (0)