Skip to content

Commit

Permalink
Bumped version to 0.9.1, updated readme and dist files
Browse files Browse the repository at this point in the history
  • Loading branch information
thedersen committed Jan 8, 2014
1 parent 56a1e56 commit 08d01da
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 15 deletions.
9 changes: 8 additions & 1 deletion README.md
@@ -1,4 +1,4 @@
# Backbone.Validation v0.9.0
# Backbone.Validation

A validation plugin for [Backbone.js](http://documentcloud.github.com/backbone) that validates both your model as well as form input.

Expand Down Expand Up @@ -878,6 +878,13 @@ Basic behaviour:
## Release notes
#### v0.9.1 [commits](https://github.com/thedersen/backbone.validation/compare/v0.9.0...v0.9.1)
* Upgraded buster.js to v0.7.8
* Updated contribute section in readme
* Update README.md typo: `i` => `is`. Fixes [#183](https://github.com/thedersen/backbone.validation/issues/183)
* Fixed model unbind when model is also part of a collection of which other models have binding. Fixes [#182](https://github.com/thedersen/backbone.validation/issues/182)
#### v0.9.0 [commits](https://github.com/thedersen/backbone.validation/compare/v0.8.2...v0.9.0)
* Fixed undefined format function when calling one of the built in validators form within a method validator. Fixes [#98](https://github.com/thedersen/backbone.validation/issues/98) and [#111](https://github.com/thedersen/backbone.validation/issues/111)
Expand Down
6 changes: 3 additions & 3 deletions dist/backbone-validation-amd-min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/backbone-validation-amd.js
@@ -1,6 +1,6 @@
// Backbone.Validation v0.9.0
// Backbone.Validation v0.9.1
//
// Copyright (c) 2011-2013 Thomas Pedersen
// Copyright (c) 2011-2014 Thomas Pedersen
// Distributed under MIT License
//
// Documentation and full license available at:
Expand Down Expand Up @@ -312,7 +312,7 @@
return {

// Current version of the library
version: '0.9.0',
version: '0.9.1',

// Called to configure the default options
configure: function(options) {
Expand Down
6 changes: 3 additions & 3 deletions dist/backbone-validation-min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/backbone-validation.js
@@ -1,6 +1,6 @@
// Backbone.Validation v0.9.0
// Backbone.Validation v0.9.1
//
// Copyright (c) 2011-2013 Thomas Pedersen
// Copyright (c) 2011-2014 Thomas Pedersen
// Distributed under MIT License
//
// Documentation and full license available at:
Expand Down Expand Up @@ -305,7 +305,7 @@ Backbone.Validation = (function(_){
return {

// Current version of the library
version: '0.9.0',
version: '0.9.1',

// Called to configure the default options
configure: function(options) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "backbone-validation",
"title": "Backbone.Validation",
"version": "0.9.0",
"version": "0.9.1",
"author": {
"name": "Thomas Pedersen",
"url": "http://thedersen.com/"
Expand Down
2 changes: 1 addition & 1 deletion src/backbone-validation.js
Expand Up @@ -298,7 +298,7 @@ Backbone.Validation = (function(_){
return {

// Current version of the library
version: '0.9.0',
version: '0.9.1',

// Called to configure the default options
configure: function(options) {
Expand Down

0 comments on commit 08d01da

Please sign in to comment.