Skip to content

Commit 988f662

Browse files
committed
bump version
1 parent fbc306a commit 988f662

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ A simple, reactive schema validation smart package for Meteor.
55

66
## Change Log
77

8+
### 1.2.0
9+
10+
* The `clean` function now automatically converts a number or string to a Date object. (Thanks @rlora)
11+
* Fix to `makeGeneric` handling when a property name starts with a number but also includes non-numeric characters. (Thanks @Nieziemski)
12+
* New `exclusiveMax` and `exclusiveMin` options allow you to specify that the `min` or `max` value itself should not be considered valid. (Thanks @sleiber)
13+
814
### 1.1.0
915

1016
* Introduce the `pick` method on `SimpleSchema` instances to create subschemas

package.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: "aldeed:simple-schema",
33
summary: "A simple schema validation object with reactivity. Used by collection2 and autoform.",
4-
version: "1.1.0",
4+
version: "1.2.0",
55
git: "https://github.com/aldeed/meteor-simple-schema.git"
66
});
77

0 commit comments

Comments
 (0)