diff --git a/CHANGELOG.md b/CHANGELOG.md index a332f34..8eb68e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ A simple, reactive schema validation smart package for Meteor. ## Change Log +### 1.2.0 + +* The `clean` function now automatically converts a number or string to a Date object. (Thanks @rlora) +* Fix to `makeGeneric` handling when a property name starts with a number but also includes non-numeric characters. (Thanks @Nieziemski) +* New `exclusiveMax` and `exclusiveMin` options allow you to specify that the `min` or `max` value itself should not be considered valid. (Thanks @sleiber) + ### 1.1.0 * Introduce the `pick` method on `SimpleSchema` instances to create subschemas diff --git a/package.js b/package.js index b3d9097..f8566f3 100644 --- a/package.js +++ b/package.js @@ -1,7 +1,7 @@ Package.describe({ name: "aldeed:simple-schema", summary: "A simple schema validation object with reactivity. Used by collection2 and autoform.", - version: "1.1.0", + version: "1.2.0", git: "https://github.com/aldeed/meteor-simple-schema.git" });