Skip to content

Commit 9a82abb

Browse files
committed
bump version
1 parent 7033d85 commit 9a82abb

File tree

4 files changed

+20
-10
lines changed

4 files changed

+20
-10
lines changed

.versions

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
aldeed:simple-schema@1.3.0
1+
aldeed:simple-schema@1.3.1
22
application-configuration@1.0.4
33
base64@1.0.2
44
binary-heap@1.0.2
55
callback-hook@1.0.2
6-
check@1.0.3
7-
ddp@1.0.13
6+
check@1.0.4
7+
ddp@1.0.14
88
deps@1.0.6
99
ejson@1.0.5
1010
follower-livedata@1.0.3
1111
geojson-utils@1.0.2
1212
id-map@1.0.2
13-
jquery@1.0.2
13+
jquery@1.11.3
1414
json@1.0.2
15-
local-test:aldeed:simple-schema@1.3.0
15+
local-test:aldeed:simple-schema@1.3.1
1616
logging@1.0.6
1717
meteor@1.1.4
1818
minimongo@1.0.6
@@ -22,5 +22,5 @@ random@1.0.2
2222
retry@1.0.2
2323
test-helpers@1.0.3
2424
tinytest@1.0.4
25-
tracker@1.0.4
25+
tracker@1.0.5
2626
underscore@1.0.2

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
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.3.1
9+
10+
* Fix "undefined is not allowed by the schema" error message
11+
* Trim strings before removing empty strings so that `" "` will be cleaned
12+
* Don't type convert $unset values when cleaning
13+
814
### 1.3.0
915

1016
Added built-in regular expression `SimpleSchema.RegEx.ZipCode`

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
1-
simple-schema
1+
[![Build Status](https://travis-ci.org/aldeed/meteor-simple-schema.png?branch=master)](https://travis-ci.org/aldeed/meteor-simple-schema)
2+
3+
SimpleSchema
24
=========================
35

4-
[![Build Status](https://travis-ci.org/aldeed/meteor-simple-schema.png?branch=master)](https://travis-ci.org/aldeed/meteor-simple-schema)
6+
*aldeed:simple-schema*
7+
8+
A simple, reactive schema validation package for Meteor. It's used by the [Collection2](https://github.com/aldeed/meteor-collection2) and [AutoForm](https://github.com/aldeed/meteor-autoform) packages, but you can use it by itself, too.
59

6-
A simple, reactive schema validation smart package for Meteor. It's used by the [Collection2](https://github.com/aldeed/meteor-collection2) and [AutoForm](https://github.com/aldeed/meteor-autoform) packages, but you can use it by itself, too.
10+
## Table of Contents
711

812
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
913
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->

package.js

Lines changed: 1 addition & 1 deletion
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.3.0",
4+
version: "1.3.1",
55
git: "https://github.com/aldeed/meteor-simple-schema.git"
66
});
77

0 commit comments

Comments
 (0)