diff --git a/CHANGELOG.md b/CHANGELOG.md index ad62cee..db96fae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 4.0.2 (2012/07/11) + +* Replace "then" with correct "than" in all error messages. (Identified by stefanw) + ## 4.0.1 (2012/05/09) * Fixed bug with extended schemas that contain a "pattern" attribute. (Identified by DrDyne) diff --git a/lib/json-schema-draft-01.js b/lib/json-schema-draft-01.js index b3f9881..49ff1b9 100644 --- a/lib/json-schema-draft-01.js +++ b/lib/json-schema-draft-01.js @@ -3,7 +3,7 @@ * * @fileOverview Implementation of the first revision of the JSON Schema specification draft. * @author Gary Court - * @version 1.7 + * @version 1.7.1 * @see http://github.com/garycourt/JSV */ diff --git a/lib/json-schema-draft-02.js b/lib/json-schema-draft-02.js index ea20e35..946f06a 100644 --- a/lib/json-schema-draft-02.js +++ b/lib/json-schema-draft-02.js @@ -3,7 +3,7 @@ * * @fileOverview Implementation of the second revision of the JSON Schema specification draft. * @author Gary Court - * @version 1.7 + * @version 1.7.1 * @see http://github.com/garycourt/JSV */ diff --git a/lib/json-schema-draft-03.js b/lib/json-schema-draft-03.js index 3e31e06..e0e4843 100644 --- a/lib/json-schema-draft-03.js +++ b/lib/json-schema-draft-03.js @@ -3,7 +3,7 @@ * * @fileOverview Implementation of the third revision of the JSON Schema specification draft. * @author Gary Court - * @version 1.5 + * @version 1.5.1 * @see http://github.com/garycourt/JSV */ diff --git a/lib/jsv.js b/lib/jsv.js index 6c974a1..1ca04ae 100644 --- a/lib/jsv.js +++ b/lib/jsv.js @@ -3,7 +3,7 @@ * * @fileOverview A JavaScript implementation of a extendable, fully compliant JSON Schema validator. * @author Gary Court - * @version 4.0.1 + * @version 4.0.2 * @see http://github.com/garycourt/JSV */ diff --git a/package.json b/package.json index 6fed5ce..4e29f9f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name" : "JSV", - "version" : "4.0.1", + "version" : "4.0.2", "description" : "A JavaScript implementation of a extendable, fully compliant JSON Schema validator.", "homepage" : "http://github.com/garycourt/JSV", "author" : "Gary Court ",