Skip to content

Commit

Permalink
Stable Version 1.1.1.
Browse files Browse the repository at this point in the history
Fixes #9
  • Loading branch information
jmdobry committed Mar 27, 2015
1 parent 845e233 commit beef500
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
##### 1.1.1 - 27 March 2015

###### Backwards compatible bug fixes
- #9 - Custom defined rule is not called on multiple attributes - thanks to @gtarcea for the PR!

##### 1.1.0 - 27 March 2015

###### Other
Expand Down
4 changes: 2 additions & 2 deletions dist/js-data-schema.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
* js-data-schema
* @version 1.1.0 - Homepage <https://github.com/js-data/js-data-schema/>
* @version 1.1.1 - Homepage <https://github.com/js-data/js-data-schema/>
* @author Jason Dobry <[email protected]>
* @copyright (c) 2013-2015 Jason Dobry
* @license MIT <https://github.com/js-data/js-data-schema/blob/master/LICENSE>
Expand Down Expand Up @@ -595,7 +595,7 @@ return /******/ (function(modules) { // webpackBootstrap
var rule = _this.parent.rules[ruleKey] || defaultRules[ruleKey];
// Asynchronous rules get added to the queue
if (rule.async) {
ruleQueue[ruleKey] = (function (r, key, val, rVal) {
ruleQueue[ruleKey + "_" + ruleValue] = (function (r, key, val, rVal) {
return function (next) {
r(val, rVal, function (err) {
next(null, { err: err, key: key });
Expand Down
4 changes: 2 additions & 2 deletions dist/js-data-schema.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js-data-schema.min.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion 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.1.0",
"version": "1.1.1",
"homepage": "http://www.js-data.io/docs/js-data-schema",
"repository": {
"type": "git",
Expand Down

0 comments on commit beef500

Please sign in to comment.