diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 55886e11..f76df415 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -20,6 +20,16 @@ --> ## Release Notes for Cordova (Android) ## +### 7.1.3 (Nov 19, 2018) + +* [GH-495](https://github.com/apache/cordova-android/pull/495) Incorrect default sdk version issue fix +* [GH-496](https://github.com/apache/cordova-android/pull/496) update comments in `build.gradle` +* [GH-539](https://github.com/apache/cordova-android/pull/539) Fix dest overwrite, in case of of plugin `source-file` element with `target-dir` that does not need remapping +* [GH-540](https://github.com/apache/cordova-android/issues/540) support plugin `source-file` element with any app `target-dir` value +* [GH-547](https://github.com/apache/cordova-android/issues/547) Compatibility of old plugins with non-Java `source-file` entries (individual files) +* [GH-551](https://github.com/apache/cordova-android/pull/551) add missing cast for cdvMinSdkVersion to `build.gradle` +* [GH-552](https://github.com/apache/cordova-android/issues/552) check for `build-extras.gradle` in the parent app directory + ### 7.1.2 (Nov 08, 2018) * [CB-14127](https://issues.apache.org/jira/browse/CB-14127): Always put the Google repo above jcenter * [CB-14165](https://issues.apache.org/jira/browse/CB-14165): Emulator: handle "device still connecting" error (#457) diff --git a/VERSION b/VERSION index d313e2e5..1996c504 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -7.1.3-dev +7.1.3 diff --git a/bin/templates/cordova/version b/bin/templates/cordova/version index 5734c0d4..0163e72b 100755 --- a/bin/templates/cordova/version +++ b/bin/templates/cordova/version @@ -20,7 +20,7 @@ */ // Coho updates this line: -var VERSION = "7.1.3-dev"; +var VERSION = "7.1.3"; module.exports.version = VERSION; diff --git a/bin/templates/project/assets/www/cordova.js b/bin/templates/project/assets/www/cordova.js index d7964a1c..c6d06329 100644 --- a/bin/templates/project/assets/www/cordova.js +++ b/bin/templates/project/assets/www/cordova.js @@ -19,7 +19,7 @@ under the License. */ ;(function() { -var PLATFORM_VERSION_BUILD_LABEL = '7.1.3-dev'; +var PLATFORM_VERSION_BUILD_LABEL = '7.1.3'; // file: src/scripts/require.js /* jshint -W079 */ diff --git a/framework/build.gradle b/framework/build.gradle index 2b888ab8..aa5f1479 100644 --- a/framework/build.gradle +++ b/framework/build.gradle @@ -42,7 +42,7 @@ apply plugin: 'com.github.dcendents.android-maven' apply plugin: 'com.jfrog.bintray' group = 'org.apache.cordova' -version = '7.1.3-dev' +version = '7.1.3' android { compileSdkVersion cdvCompileSdkVersion @@ -129,9 +129,9 @@ bintray { licenses = ['Apache-2.0'] labels = ['android', 'cordova', 'phonegap'] version { - name = '7.1.3-dev' + name = '7.1.3' released = new Date() - vcsTag = '7.1.3-dev' + vcsTag = '7.1.3' } } } diff --git a/framework/src/org/apache/cordova/CordovaWebView.java b/framework/src/org/apache/cordova/CordovaWebView.java index 86f17f00..28b6618f 100644 --- a/framework/src/org/apache/cordova/CordovaWebView.java +++ b/framework/src/org/apache/cordova/CordovaWebView.java @@ -31,7 +31,7 @@ import android.webkit.WebChromeClient.CustomViewCallback; * are not expected to implement it. */ public interface CordovaWebView { - public static final String CORDOVA_VERSION = "7.1.3-dev"; + public static final String CORDOVA_VERSION = "7.1.3"; void init(CordovaInterface cordova, List pluginEntries, CordovaPreferences preferences); diff --git a/package.json b/package.json index fb0a9e00..918a9bb4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cordova-android", - "version": "7.1.3-dev", + "version": "7.1.3", "description": "cordova-android release", "bin": { "create": "bin/create"