Skip to content

Commit

Permalink
Update VERSION & RELEASENOTES for 7.1.3
Browse files Browse the repository at this point in the history
NOTE: The version was manually updated in the following files:
* RELEASENOTES.md
* VERSION
* bin/templates/cordova/version
* bin/templates/project/assets/www/cordova.js
* framework/build.gradle
* framework/src/org/apache/cordova/CordovaWebView.java
* package.json

with help from git & bash tricks based on changes in the following
commits for 7.1.2 & 7.1.3-dev versions:
- 725e75f
- f86519b

FUTURE TBD: it is desired that we can set the version in
one place as discussed in: apache/cordova#50
  • Loading branch information
Christopher J. Brody committed Nov 19, 2018
1 parent 7b33517 commit e1befac
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 8 deletions.
10 changes: 10 additions & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.1.3-dev
7.1.3
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.3-dev";
var VERSION = "7.1.3";

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.3-dev';
var PLATFORM_VERSION_BUILD_LABEL = '7.1.3';
// 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.3-dev'
version = '7.1.3'

android {
compileSdkVersion cdvCompileSdkVersion
Expand Down Expand Up @@ -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'
}
}
}
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.3-dev";
public static final String CORDOVA_VERSION = "7.1.3";

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.3-dev",
"version": "7.1.3",
"description": "cordova-android release",
"bin": {
"create": "bin/create"
Expand Down

0 comments on commit e1befac

Please sign in to comment.