Skip to content

Commit

Permalink
Version bump to 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gf3 committed Dec 18, 2015
1 parent b75ec4e commit 72e31df
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "moment-range",
"version": "2.0.3",
"version": "2.1.0",
"main": "./dist/moment-range.js",
"ignore": [
"**/.*",
Expand Down
4 changes: 2 additions & 2 deletions dist/moment-range.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ function DateRange(start, end) {
}
}

this.start = moment(s);
this.end = moment(e);
this.start = (s === null) ? moment(-8640000000000000) : moment(s);
this.end = (e === null) ? moment(8640000000000000) : moment(e);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion dist/moment-range.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"directories": {
"lib": "./lib"
},
"version": "2.0.3",
"version": "2.1.0",
"engines": {
"node": "*"
},
Expand Down

0 comments on commit 72e31df

Please sign in to comment.