Skip to content

Commit 1e66011

Browse files
committed
Stable Version 1.0.0.
1 parent 33c8145 commit 1e66011

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
##### 1.0.0 - 03 February 2015
2+
3+
Stable Version 1.0.0
4+
15
##### 1.0.0-beta.1 - 12 January 2015
26

37
Now in beta.

dist/js-data-schema.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @author Jason Dobry <[email protected]>
33
* @file js-data-schema.js
4-
* @version 1.0.0-beta.1 - Homepage <http://www.js-data.io/docs/js-data-schema>
4+
* @version 1.0.0 - Homepage <http://www.js-data.io/docs/js-data-schema>
55
* @copyright (c) 2014 Jason Dobry
66
* @license MIT <https://github.com/js-data/js-data-schema/blob/master/LICENSE>
77
*
@@ -957,7 +957,7 @@ var mixIn = require('../object/mixIn');
957957
var flags = '';
958958
flags += r.multiline ? 'm' : '';
959959
flags += r.global ? 'g' : '';
960-
flags += r.ignorecase ? 'i' : '';
960+
flags += r.ignoreCase ? 'i' : '';
961961
return new RegExp(r.source, flags);
962962
}
963963

dist/js-data-schema.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "js-data-schema",
33
"description": "Define and validate rules, datatypes and schemata in Node and in the browser.",
4-
"version": "1.0.0-beta.1",
4+
"version": "1.0.0",
55
"homepage": "http://www.js-data.io/docs/js-data-schema",
66
"repository": {
77
"type": "git",
@@ -40,15 +40,15 @@
4040
"devDependencies": {
4141
"chai": "1.10.0",
4242
"grunt": "0.4.5",
43-
"grunt-browserify": "3.2.1",
43+
"grunt-browserify": "3.3.0",
4444
"grunt-contrib-clean": "0.6.0",
45-
"grunt-contrib-jshint": "0.10.0",
45+
"grunt-contrib-jshint": "0.11.0",
4646
"grunt-contrib-uglify": "0.7.0",
4747
"grunt-contrib-watch": "0.6.1",
4848
"grunt-karma": "0.10.1",
4949
"grunt-karma-coveralls": "2.5.3",
50-
"grunt-mocha-test": "0.12.6",
51-
"jit-grunt": "0.9.0",
50+
"grunt-mocha-test": "0.12.7",
51+
"jit-grunt": "0.9.1",
5252
"karma": "0.12.31",
5353
"karma-chai": "0.1.0",
5454
"karma-chrome-launcher": "0.1.7",

0 commit comments

Comments
 (0)