Skip to content

Commit

Permalink
Bump version to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lukejagodzinski committed Oct 28, 2015
1 parent 03b4de1 commit d7efbc6
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# 1.1.0 (2015-10-28)

- Ability to validate nested fields from the top level document.
- Now you can do `doc.validate('field.nestedField')`
- Now you can do `doc.getValidationError('field.nestedField')`
- Now you can do `doc.hasValidationError('field.nestedField')`
- All the following methods also work with the nested fields: `doc.getValidationErrors()`, `doc.hasValidationErrors()`, `doc.clearValidationErrors()`, `doc.throwValidationException()`, `doc.catchValidationException()`

# 1.0.4 (2015-10-11)

- Use ReactiveMap 2.0

# 1.0.3 (2015-10-08)

- Fixed wrong property name in the `afterSet` event
Expand Down
4 changes: 2 additions & 2 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
Package.describe({
name: 'jagi:astronomy-validators',
version: '1.0.4',
version: '1.1.0',
summary: 'Validators for Meteor Astronomy',
git: 'https://github.com/jagi/meteor-astronomy-validators.git'
});

Package.onUse(function(api) {
api.versionsFrom('1.1.0.2');

api.use('jagi:astronomy@1.0.2');
api.use('jagi:astronomy@1.1.5');
api.use('jagi:reactive-map@2.0.0');
api.use('underscore');
api.use('ui');
Expand Down

0 comments on commit d7efbc6

Please sign in to comment.