From 1e1b9969eb1ec11b06c53fdad55090185053cc9a Mon Sep 17 00:00:00 2001 From: Julien Sanchez Date: Wed, 13 Apr 2016 10:36:10 +0200 Subject: [PATCH] Release v1.6.2 --- History.md | 5 +++++ README.md | 2 +- RELEASE | 2 +- bower.json | 2 +- package.json | 2 +- src/quantities.js | 2 +- 6 files changed, 10 insertions(+), 5 deletions(-) diff --git a/History.md b/History.md index 46cd70d..dbd1c66 100644 --- a/History.md +++ b/History.md @@ -1,3 +1,8 @@ +1.6.2 / 2016-04-13 +------------------ + +* Accept blank string as initialization value + 1.6.1 / 2016-03-27 ------------------ diff --git a/README.md b/README.md index 5ee4796..ddc6d75 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ and within browsers. ### Browser -Download [latest release v1.6.1](https://raw.github.com/gentooboontoo/js-quantities/v1.6.1/src/quantities.js) +Download [latest release v1.6.2](https://raw.github.com/gentooboontoo/js-quantities/v1.6.2/src/quantities.js) or install it with Bower: bower install js-quantities diff --git a/RELEASE b/RELEASE index 9c6d629..fdd3be6 100644 --- a/RELEASE +++ b/RELEASE @@ -1 +1 @@ -1.6.1 +1.6.2 diff --git a/bower.json b/bower.json index 385b64f..c85bcf5 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "js-quantities", - "version": "1.6.1", + "version": "1.6.2", "description": "JavaScript library for quantity calculation and unit conversion", "main": "./src/quantities.js", "keywords": [ diff --git a/package.json b/package.json index a4adc34..4144d82 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "main": "./src/quantities.js", "readmeFilename": "README.md", "description": "JavaScript library for quantity calculation and unit conversion", - "version": "1.6.1", + "version": "1.6.2", "homepage": "http://gentooboontoo.github.io/js-quantities/", "repository": { "type": "git", diff --git a/src/quantities.js b/src/quantities.js index 02ec20a..d19d55d 100644 --- a/src/quantities.js +++ b/src/quantities.js @@ -1947,7 +1947,7 @@ SOFTWARE. QtyError.prototype = Object.create(Error.prototype, {constructor: { value: QtyError }}); Qty.Error = QtyError; - Qty.version = "1.6.1"; + Qty.version = "1.6.2"; return Qty; }));