Skip to content

Commit

Permalink
Release v1.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
gentooboontoo committed Sep 22, 2016
1 parent d189802 commit 7ead2b1
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 5 deletions.
9 changes: 9 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
1.6.3 / 2016-09-22
------------------

* Add missing kinds
* Fix conversion from percentage to unitless quantity
* Fix capacitance definition
* Exclude `farad` from base units
* Rename `mass concentration` to `density`

1.6.2 / 2016-04-13
------------------

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ and within browsers.

### Browser

Download [latest release v1.6.2](https://raw.github.com/gentooboontoo/js-quantities/v1.6.2/src/quantities.js)
Download [latest release v1.6.3](https://raw.github.com/gentooboontoo/js-quantities/v1.6.3/src/quantities.js)
or install it with Bower:

bower install js-quantities
Expand Down
2 changes: 1 addition & 1 deletion RELEASE
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.6.2
1.6.3
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "js-quantities",
"version": "1.6.2",
"version": "1.6.3",
"description": "JavaScript library for quantity calculation and unit conversion",
"main": "./src/quantities.js",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"main": "./src/quantities.js",
"readmeFilename": "README.md",
"description": "JavaScript library for quantity calculation and unit conversion",
"version": "1.6.2",
"version": "1.6.3",
"homepage": "http://gentooboontoo.github.io/js-quantities/",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/quantities.js
Original file line number Diff line number Diff line change
Expand Up @@ -1959,7 +1959,7 @@ SOFTWARE.
QtyError.prototype = Object.create(Error.prototype, {constructor: { value: QtyError }});
Qty.Error = QtyError;

Qty.version = "1.6.2";
Qty.version = "1.6.3";

return Qty;
}));

0 comments on commit 7ead2b1

Please sign in to comment.