bump version and update doc

This commit is contained in:
eleith 2012-10-07 17:16:06 -07:00
parent 848e4cf170
commit c9962c82c9
2 changed files with 7 additions and 3 deletions

View File

@ -1,4 +1,4 @@
#v0.1.8
#v0.1.9
### schemajs [![Build Status](https://secure.travis-ci.org/eleith/schemajs.png)](http://travis-ci.org/eleith/schemajs)
@ -89,7 +89,11 @@ schema =
// [boolean]
// OPTIONAL, if true, this parameter must exist to validate
"required": true
// [boolean]
// OPTIONAL, if true, this parameter can be null, despite any other rules
"allownull": true
// [object]
// OPTIONAL, functions are custom property checks, else a built in property will be looked up
"properties": {max:100, min:0, special:custom_property}

View File

@ -1,7 +1,7 @@
{
"name": "schemajs",
"description": "validate objects (including http request params) against a schema. includes express middleware",
"version": "0.1.8",
"version": "0.1.9",
"author": "eleith",
"contributors": ["andychilton"],
"repository":