Skip to content

Commit

Permalink
Release v1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gentooboontoo committed Mar 27, 2016
1 parent 812420e commit dc3b5d7
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
1.6.1 / 2016-03-27
------------------

* Fix definition of square foot
* Add tablespoon `tbsp` alias
* Add `Qty.version` property

1.6.0 / 2015-12-26
------------------

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.0](https://raw.github.com/gentooboontoo/js-quantities/v1.6.0/src/quantities.js)
Download [latest release v1.6.1](https://raw.github.com/gentooboontoo/js-quantities/v1.6.1/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.0
1.6.1
2 changes: 1 addition & 1 deletion bin/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -e

VERSION=$(cat RELEASE)

git add History.md README.md bower.json package.json RELEASE
git add History.md README.md bower.json package.json RELEASE src/quantities.js
git commit -m "Release v${VERSION}"
git tag "v${VERSION}"
git push origin master
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.0",
"version": "1.6.1",
"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.0",
"version": "1.6.1",
"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 @@ -1950,7 +1950,7 @@ SOFTWARE.
QtyError.prototype = Object.create(Error.prototype, {constructor: { value: QtyError }});
Qty.Error = QtyError;

Qty.version = "1.6.0";
Qty.version = "1.6.1";

return Qty;
}));

0 comments on commit dc3b5d7

Please sign in to comment.