Update VERSION & RELEASENOTES for 7.1.4

NOTE: VERSION was updated based on e1befac.
This commit is contained in:
Christopher J. Brody 2018-11-22 22:38:38 -05:00
parent 84cb08b23e
commit a68f9fd752
7 changed files with 14 additions and 8 deletions

View File

@ -20,6 +20,12 @@
--> -->
## Release Notes for Cordova (Android) ## ## 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) ### 7.1.3 (Nov 19, 2018)
* [GH-495](https://github.com/apache/cordova-android/pull/495) Incorrect default sdk version issue fix * [GH-495](https://github.com/apache/cordova-android/pull/495) Incorrect default sdk version issue fix

View File

@ -1 +1 @@
7.1.4-dev 7.1.4

View File

@ -20,7 +20,7 @@
*/ */
// Coho updates this line: // Coho updates this line:
var VERSION = "7.1.4-dev"; var VERSION = "7.1.4";
module.exports.version = VERSION; module.exports.version = VERSION;

View File

@ -19,7 +19,7 @@
under the License. under the License.
*/ */
;(function() { ;(function() {
var PLATFORM_VERSION_BUILD_LABEL = '7.1.4-dev'; var PLATFORM_VERSION_BUILD_LABEL = '7.1.4';
// file: src/scripts/require.js // file: src/scripts/require.js
/* jshint -W079 */ /* jshint -W079 */

View File

@ -42,7 +42,7 @@ apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'com.jfrog.bintray' apply plugin: 'com.jfrog.bintray'
group = 'org.apache.cordova' group = 'org.apache.cordova'
version = '7.1.4-dev' version = '7.1.4'
android { android {
compileSdkVersion cdvCompileSdkVersion compileSdkVersion cdvCompileSdkVersion
@ -129,9 +129,9 @@ bintray {
licenses = ['Apache-2.0'] licenses = ['Apache-2.0']
labels = ['android', 'cordova', 'phonegap'] labels = ['android', 'cordova', 'phonegap']
version { version {
name = '7.1.4-dev' name = '7.1.4'
released = new Date() released = new Date()
vcsTag = '7.1.4-dev' vcsTag = '7.1.4'
} }
} }
} }

View File

@ -31,7 +31,7 @@ import android.webkit.WebChromeClient.CustomViewCallback;
* are not expected to implement it. * are not expected to implement it.
*/ */
public interface CordovaWebView { 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); void init(CordovaInterface cordova, List<PluginEntry> pluginEntries, CordovaPreferences preferences);

View File

@ -1,6 +1,6 @@
{ {
"name": "cordova-android", "name": "cordova-android",
"version": "7.1.4-dev", "version": "7.1.4",
"description": "cordova-android release", "description": "cordova-android release",
"bin": { "bin": {
"create": "bin/create" "create": "bin/create"