Skip to content

Commit

Permalink
Release v1.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gentooboontoo committed Mar 31, 2018
1 parent 6abc52a commit 2190cfd
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 7 deletions.
5 changes: 5 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
1.7.2 / 2018-03-31
------------------

* Remove `module` from package definition (Fix #91)

1.7.1 / 2018-03-25
------------------

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.1](https://raw.github.com/gentooboontoo/js-quantities/v1.7.1/build/quantities.js)
Download [latest release v1.7.2](https://raw.github.com/gentooboontoo/js-quantities/v1.7.2/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.1
1.7.2
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.1",
"version": "1.7.2",
"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 @@ -1990,6 +1990,6 @@ function simplify (units) {
});
}

Qty.version = "1.7.1";
Qty.version = "1.7.2";

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

Qty.version = "1.7.1";
Qty.version = "1.7.2";

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.1",
"version": "1.7.2",
"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.1";
Qty.version = "1.7.2";

export default Qty;

0 comments on commit 2190cfd

Please sign in to comment.