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

Release 3.1.0

This commit is contained in:
José Valim 2013-09-02 19:02:11 -03:00
parent 2d919fba32
commit 08edcc10fe
4 changed files with 8 additions and 5 deletions

View file

@ -1,4 +1,4 @@
== 3.1.0.rc2
== 3.1.0
Security announcement: http://blog.plataformatec.com.br/2013/08/devise-3-1-now-with-more-secure-defaults/
@ -42,11 +42,14 @@ Security announcement: http://blog.plataformatec.com.br/2013/08/csrf-token-fixat
* enhancements
* Rails 4 and Strong Parameters compatibility (by @carlosantoniodasilva, @josevalim, @latortuga, @lucasmazza, @nashby, @rafaelfranca, @spastorino)
* Drop support for Rails < 3.2 and Ruby < 1.9.3
* Enable to skip sending reconfirmation email when reconfirmable is on and skip_confirmation_notification! is invoked (by @tkhr)
* Enable to skip sending reconfirmation email when reconfirmable is on and `skip_confirmation_notification!` is invoked (by @tkhr)
* bug fix
* Errors on unlock are now properly reflected on the first `unlock_keys`
* backwards incompatible changes
* Changes on session storage will expire all existing sessions on upgrade
== 2.2.4
* enhancements

View file

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

View file

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

View file

@ -1,3 +1,3 @@
module Devise
VERSION = "3.1.0.rc2".freeze
VERSION = "3.1.0".freeze
end