diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 6f37ad77..94778157 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -20,6 +20,21 @@ --> ## Release Notes for Cordova Browser ## +### 5.0.4 (Jul 30, 2018) +* [CB-14145](https://issues.apache.org/jira/browse/CB-14145) update dependencies to resolve `npm audit` issues, pinned in `5.0.x` only ([GH-53](https://github.com/apache/cordova-browser/pull/53)) +* [CB-9366](https://issues.apache.org/jira/browse/CB-9366) - log `error.stack` in `cordova.js` (update from `cordova-js@4.2.4`) in `5.0.x` +* Add Node.js 10 to AppVeyor CI and Travis CI (`5.0.x`) + +### 5.0.3 (Dec 20, 2017) +* [CB-13689](https://issues.apache.org/jira/browse/CB-13689) Update `node_modules` (contents committed) +* [8560888](https://github.com/apache/cordova-browser/commit/85608884499571ddda34155e349e6cc61cd9b834) - LINTINGOMGURSOSTRICT fix to `bin/template/cordova/browser_handler.js` +* [CB-13614](https://issues.apache.org/jira/browse/CB-13614) + - Fixed case where src was a folder and dest was a folder that did not exist, added test to prove it ([GH-49](https://github.com/apache/cordova-browser/pull/49)). + - create intermediate file paths + - Fix tests for **Windows** style paths +* [CB-13562](https://issues.apache.org/jira/browse/CB-13562) fixed asset tag when adding push plugin to **Browser** +* [CB-13501](https://issues.apache.org/jira/browse/CB-13501) explicit support for Node.js 8 in AppVeyor CI and Travis CI testing + ### 5.0.2 (Dec 18, 2017) * [CB-13689](https://issues.apache.org/jira/browse/CB-13689): Updated checked-in node_modules * [CB-13562](https://issues.apache.org/jira/browse/CB-13562): fixed asset tag when adding push plugin to **Browser** diff --git a/VERSION b/VERSION index b15dca87..2d6c0bcf 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -5.0.4-dev +5.0.4 diff --git a/bin/template/cordova/version b/bin/template/cordova/version index 76dd83dc..96f5c76d 100755 --- a/bin/template/cordova/version +++ b/bin/template/cordova/version @@ -20,6 +20,6 @@ */ // Coho updates this line: -var VERSION = "5.0.4-dev"; +var VERSION = "5.0.4"; console.log(VERSION); diff --git a/cordova-lib/cordova.js b/cordova-lib/cordova.js index 2081f567..c3ed0033 100644 --- a/cordova-lib/cordova.js +++ b/cordova-lib/cordova.js @@ -1,5 +1,5 @@ // Platform: browser -// e040d9e9343d5f27dd4f67616660b33b92a82ff7 +// 9e8e1b716252c4a08abcd31a13013b868d6f4141 /* Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file @@ -19,7 +19,7 @@ under the License. */ ;(function() { -var PLATFORM_VERSION_BUILD_LABEL = '5.0.4-dev'; +var PLATFORM_VERSION_BUILD_LABEL = '5.0.4'; // file: src/scripts/require.js /* jshint -W079 */ diff --git a/package.json b/package.json index 7399d638..afce674a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cordova-browser", - "version": "5.0.4-dev", + "version": "5.0.4", "description": "cordova-browser release", "main": "bin/template/cordova/Api.js", "bin": "bin/create",