Skip to content

Commit a68f9fd

Browse files
author
Christopher J. Brody
committed
Update VERSION & RELEASENOTES for 7.1.4
NOTE: VERSION was updated based on e1befac.
1 parent 84cb08b commit a68f9fd

File tree

7 files changed

+14
-8
lines changed

7 files changed

+14
-8
lines changed

RELEASENOTES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@
2020
-->
2121
## Release Notes for Cordova (Android) ##
2222

23+
### 7.1.4 (Nov 22, 2018)
24+
25+
* Update android-versions to `1.4.0`, with added support for Android Pie ([#573](https://github.com/apache/cordova-android/pull/573))
26+
* Output current package name if package name can't be validated ([#567](https://github.com/apache/cordova-android/pull/567))
27+
* Resolve issue with plugin `target-dir="*app*"` subdirs ([#572](https://github.com/apache/cordova-android/pull/572))
28+
2329
### 7.1.3 (Nov 19, 2018)
2430

2531
* [GH-495](https://github.com/apache/cordova-android/pull/495) Incorrect default sdk version issue fix

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.1.4-dev
1+
7.1.4

bin/templates/cordova/version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*/
2121

2222
// Coho updates this line:
23-
var VERSION = "7.1.4-dev";
23+
var VERSION = "7.1.4";
2424

2525
module.exports.version = VERSION;
2626

bin/templates/project/assets/www/cordova.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
under the License.
2020
*/
2121
;(function() {
22-
var PLATFORM_VERSION_BUILD_LABEL = '7.1.4-dev';
22+
var PLATFORM_VERSION_BUILD_LABEL = '7.1.4';
2323
// file: src/scripts/require.js
2424

2525
/* jshint -W079 */

framework/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ apply plugin: 'com.github.dcendents.android-maven'
4242
apply plugin: 'com.jfrog.bintray'
4343

4444
group = 'org.apache.cordova'
45-
version = '7.1.4-dev'
45+
version = '7.1.4'
4646

4747
android {
4848
compileSdkVersion cdvCompileSdkVersion
@@ -129,9 +129,9 @@ bintray {
129129
licenses = ['Apache-2.0']
130130
labels = ['android', 'cordova', 'phonegap']
131131
version {
132-
name = '7.1.4-dev'
132+
name = '7.1.4'
133133
released = new Date()
134-
vcsTag = '7.1.4-dev'
134+
vcsTag = '7.1.4'
135135
}
136136
}
137137
}

framework/src/org/apache/cordova/CordovaWebView.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Licensed to the Apache Software Foundation (ASF) under one
3131
* are not expected to implement it.
3232
*/
3333
public interface CordovaWebView {
34-
public static final String CORDOVA_VERSION = "7.1.4-dev";
34+
public static final String CORDOVA_VERSION = "7.1.4";
3535

3636
void init(CordovaInterface cordova, List<PluginEntry> pluginEntries, CordovaPreferences preferences);
3737

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cordova-android",
3-
"version": "7.1.4-dev",
3+
"version": "7.1.4",
44
"description": "cordova-android release",
55
"bin": {
66
"create": "bin/create"

0 commit comments

Comments
 (0)