Skip to content

Commit

Permalink
Stable Version 1.0.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmdobry committed Feb 4, 2015
1 parent 33c8145 commit 1e66011
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
##### 1.0.0 - 03 February 2015

Stable Version 1.0.0

##### 1.0.0-beta.1 - 12 January 2015

Now in beta.
Expand Down
4 changes: 2 additions & 2 deletions dist/js-data-schema.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @author Jason Dobry <jason.dobry@gmail.com>
* @file js-data-schema.js
* @version 1.0.0-beta.1 - Homepage <http://www.js-data.io/docs/js-data-schema>
* @version 1.0.0 - Homepage <http://www.js-data.io/docs/js-data-schema>
* @copyright (c) 2014 Jason Dobry
* @license MIT <https://github.com/js-data/js-data-schema/blob/master/LICENSE>
*
Expand Down Expand Up @@ -957,7 +957,7 @@ var mixIn = require('../object/mixIn');
var flags = '';
flags += r.multiline ? 'm' : '';
flags += r.global ? 'g' : '';
flags += r.ignorecase ? 'i' : '';
flags += r.ignoreCase ? 'i' : '';
return new RegExp(r.source, flags);
}

Expand Down
4 changes: 2 additions & 2 deletions dist/js-data-schema.min.js

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "js-data-schema",
"description": "Define and validate rules, datatypes and schemata in Node and in the browser.",
"version": "1.0.0-beta.1",
"version": "1.0.0",
"homepage": "http://www.js-data.io/docs/js-data-schema",
"repository": {
"type": "git",
Expand Down Expand Up @@ -40,15 +40,15 @@
"devDependencies": {
"chai": "1.10.0",
"grunt": "0.4.5",
"grunt-browserify": "3.2.1",
"grunt-browserify": "3.3.0",
"grunt-contrib-clean": "0.6.0",
"grunt-contrib-jshint": "0.10.0",
"grunt-contrib-jshint": "0.11.0",
"grunt-contrib-uglify": "0.7.0",
"grunt-contrib-watch": "0.6.1",
"grunt-karma": "0.10.1",
"grunt-karma-coveralls": "2.5.3",
"grunt-mocha-test": "0.12.6",
"jit-grunt": "0.9.0",
"grunt-mocha-test": "0.12.7",
"jit-grunt": "0.9.1",
"karma": "0.12.31",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "0.1.7",
Expand Down

0 comments on commit 1e66011

Please sign in to comment.