Skip to content

Commit

Permalink
Version 1.0.0-beta.0 (#229)
Browse files Browse the repository at this point in the history
* Version 1.0.0-beta.0

* Make version validity regex understand beta version naming scheme
  • Loading branch information
LewisJEllis authored Nov 8, 2016
1 parent ea9ea5e commit 51c0ae6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"debugging",
"exceptions"
],
"version": "0.12.1",
"version": "1.0.0-beta.0",
"repository": "git://github.com/getsentry/raven-node.git",
"author": "Matt Robenolt <[email protected]>",
"license": "BSD-2-Clause",
Expand Down
2 changes: 1 addition & 1 deletion test/raven.client.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function restoreConsoleWarn() {

describe('raven.version', function () {
it('should be valid', function () {
raven.version.should.match(/^\d+\.\d+\.\d+(-\w+)?$/);
raven.version.should.match(/^\d+\.\d+\.\d+(-\w+(\.\d+)?)?$/);
});

it('should match package.json', function () {
Expand Down

0 comments on commit 51c0ae6

Please sign in to comment.