Skip to content

Commit 51c0ae6

Browse files
authored
Version 1.0.0-beta.0 (#229)
* Version 1.0.0-beta.0 * Make version validity regex understand beta version naming scheme
1 parent ea9ea5e commit 51c0ae6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"debugging",
1010
"exceptions"
1111
],
12-
"version": "0.12.1",
12+
"version": "1.0.0-beta.0",
1313
"repository": "git://github.com/getsentry/raven-node.git",
1414
"author": "Matt Robenolt <matt@ydekproductions.com>",
1515
"license": "BSD-2-Clause",

test/raven.client.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function restoreConsoleWarn() {
2525

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

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

0 commit comments

Comments
 (0)