Skip to content

Commit

Permalink
Update VERSION & RELEASENOTES for 7.1.4
Browse files Browse the repository at this point in the history
NOTE: VERSION was updated based on e1befac.
  • Loading branch information
Christopher J. Brody committed Nov 23, 2018
1 parent 84cb08b commit a68f9fd
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 8 deletions.
6 changes: 6 additions & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@
-->
## Release Notes for Cordova (Android) ##

### 7.1.4 (Nov 22, 2018)

* Update android-versions to `1.4.0`, with added support for Android Pie ([#573](https://github.com/apache/cordova-android/pull/573))
* Output current package name if package name can't be validated ([#567](https://github.com/apache/cordova-android/pull/567))
* Resolve issue with plugin `target-dir="*app*"` subdirs ([#572](https://github.com/apache/cordova-android/pull/572))

### 7.1.3 (Nov 19, 2018)

* [GH-495](https://github.com/apache/cordova-android/pull/495) Incorrect default sdk version issue fix
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.1.4-dev
7.1.4
2 changes: 1 addition & 1 deletion bin/templates/cordova/version
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*/

// Coho updates this line:
var VERSION = "7.1.4-dev";
var VERSION = "7.1.4";

module.exports.version = VERSION;

Expand Down
2 changes: 1 addition & 1 deletion bin/templates/project/assets/www/cordova.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
under the License.
*/
;(function() {
var PLATFORM_VERSION_BUILD_LABEL = '7.1.4-dev';
var PLATFORM_VERSION_BUILD_LABEL = '7.1.4';
// file: src/scripts/require.js

/* jshint -W079 */
Expand Down
6 changes: 3 additions & 3 deletions framework/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'com.jfrog.bintray'

group = 'org.apache.cordova'
version = '7.1.4-dev'
version = '7.1.4'

android {
compileSdkVersion cdvCompileSdkVersion
Expand Down Expand Up @@ -129,9 +129,9 @@ bintray {
licenses = ['Apache-2.0']
labels = ['android', 'cordova', 'phonegap']
version {
name = '7.1.4-dev'
name = '7.1.4'
released = new Date()
vcsTag = '7.1.4-dev'
vcsTag = '7.1.4'
}
}
}
2 changes: 1 addition & 1 deletion framework/src/org/apache/cordova/CordovaWebView.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Licensed to the Apache Software Foundation (ASF) under one
* are not expected to implement it.
*/
public interface CordovaWebView {
public static final String CORDOVA_VERSION = "7.1.4-dev";
public static final String CORDOVA_VERSION = "7.1.4";

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

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cordova-android",
"version": "7.1.4-dev",
"version": "7.1.4",
"description": "cordova-android release",
"bin": {
"create": "bin/create"
Expand Down

0 comments on commit a68f9fd

Please sign in to comment.