Skip to content

Commit

Permalink
Release v1.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
gentooboontoo committed Jun 26, 2019
1 parent 68d930a commit c49b012
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 7 deletions.
6 changes: 6 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
1.7.4 / 2019-06-26
------------------

* Add Imperial Gallons, and Barrels (US Beer, Imperial Beer, Oil)
* Add support for imperial version of fluid ounces and pints

1.7.3 / 2018-12-15
------------------

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.7.3](https://raw.github.com/gentooboontoo/js-quantities/v1.7.3/build/quantities.js)
Download [latest release v1.7.4](https://raw.github.com/gentooboontoo/js-quantities/v1.7.4/build/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.7.3
1.7.4
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.7.3",
"version": "1.7.4",
"description": "JavaScript library for quantity calculation and unit conversion",
"main": "./build/quantities.js",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion build/quantities.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -1997,6 +1997,6 @@ function simplify (units) {
});
}

Qty.version = "1.7.3";
Qty.version = "1.7.4";

export default Qty;
2 changes: 1 addition & 1 deletion build/quantities.js
Original file line number Diff line number Diff line change
Expand Up @@ -2003,7 +2003,7 @@ SOFTWARE.
});
}

Qty.version = "1.7.3";
Qty.version = "1.7.4";

return Qty;

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": "./build/quantities.js",
"readmeFilename": "README.md",
"description": "JavaScript library for quantity calculation and unit conversion",
"version": "1.7.3",
"version": "1.7.4",
"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 @@ -6,6 +6,6 @@ import "./quantities/predicates.js";
import "./quantities/conversion.js";
import "./quantities/format.js";

Qty.version = "1.7.3";
Qty.version = "1.7.4";

export default Qty;

0 comments on commit c49b012

Please sign in to comment.