Release v3.2.4

This commit is contained in:
Lucas Mazza 2014-03-17 11:16:38 -03:00
parent 9044631f4c
commit 755219ccfc
3 changed files with 5 additions and 3 deletions

View File

@ -1,5 +1,7 @@
### Unreleased
### 3.2.4
* enchancements
* `bcrypt` dependency updated due https://github.com/codahale/bcrypt-ruby/pull/86.
* View generator now can generate specific views with the `-v` flag, like `rails g devise:views -v sessions` (by @kayline)

View File

@ -12,7 +12,7 @@ GIT
PATH
remote: .
specs:
devise (3.2.3)
devise (3.2.4)
bcrypt (~> 3.0)
orm_adapter (~> 0.1)
railties (>= 3.2.6, < 5)
@ -48,7 +48,7 @@ GEM
tzinfo (~> 0.3.37)
arel (4.0.0)
atomic (1.1.12)
bcrypt (3.1.3)
bcrypt (3.1.7)
builder (3.1.4)
erubis (2.7.0)
faraday (0.8.8)

View File

@ -1,3 +1,3 @@
module Devise
VERSION = "3.2.3".freeze
VERSION = "3.2.4".freeze
end