Skip to content

Commit

Permalink
Bumped version to v0.5.2 and updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
thedersen committed Feb 23, 2012
1 parent 4589f26 commit 46d922f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion README.md
@@ -1,4 +1,4 @@
# Backbone.Validation v0.5.1
# Backbone.Validation v0.5.2

A validation plugin for [Backbone.js](http://documentcloud.github.com/backbone) inspired by [Backbone.ModelBinding](http://github.com/derickbailey/backbone.modelbinding), and another implementation with a slightly different approach than mine at [Backbone.Validations](http://github.com/n-time/backbone.validations).

Expand Down Expand Up @@ -608,6 +608,10 @@ The message can contain placeholders for arguments that will be replaced:

## Release notes

#### v0.5.2

* Fixed validation of attributes dependent on each other

#### v0.5.1

* `error` argument passed to the error event raised by Backbone is always an array
Expand Down
4 changes: 2 additions & 2 deletions backbone.validation.js
@@ -1,4 +1,4 @@
// Backbone.Validation v0.5.1
// Backbone.Validation v0.5.2
//
// Copyright (C)2011-2012 Thomas Pedersen
// Distributed under MIT License
Expand Down Expand Up @@ -184,7 +184,7 @@ Backbone.Validation = (function(Backbone, _, undefined) {
};

return {
version: '0.5.1',
version: '0.5.2',

configure: function(options) {
_.extend(defaultOptions, options);
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"author": "Thomas Pedersen (http://thedersen.com/)",
"name": "backbone.validation",
"version": "0.5.1",
"version": "0.5.2",
"homepage": "http://thedersen.github.com/backbone.validation",
"repository": {
"type": "git",
Expand Down

0 comments on commit 46d922f

Please sign in to comment.