1
0
Fork 0
mirror of https://github.com/heartcombo/devise.git synced 2022-11-09 12:18:31 -05:00

Release v3.2.2

This commit is contained in:
José Valim 2013-11-25 12:00:21 +01:00
parent 0028dc6a4f
commit 65947b6696
4 changed files with 10 additions and 3 deletions

View file

@ -1,3 +1,10 @@
### 3.2.2
* bug fix
* Ensure timeoutable works when `sign_out_all_scopes` is false (by @louman)
* Keep the query string when storing location (by @csexton)
* Require rails generator base class in devise generators
### 3.2.1
Security announcement: http://blog.plataformatec.com.br/2013/11/e-mail-enumeration-in-devise-in-paranoid-mode

View file

@ -12,7 +12,7 @@ GIT
PATH
remote: .
specs:
devise (3.2.1)
devise (3.2.2)
bcrypt-ruby (~> 3.0)
orm_adapter (~> 0.1)
railties (>= 3.2.6, < 5)

View file

@ -1,7 +1,7 @@
PATH
remote: ..
specs:
devise (3.2.1)
devise (3.2.2)
bcrypt-ruby (~> 3.0)
orm_adapter (~> 0.1)
railties (>= 3.2.6, < 5)

View file

@ -1,3 +1,3 @@
module Devise
VERSION = "3.2.1".freeze
VERSION = "3.2.2".freeze
end