Release 3.5.3.

This commit is contained in:
Lucas Mazza
2015-12-10 14:36:34 -02:00
parent 0d941b7ba5
commit 032eb145df
7 changed files with 25 additions and 11 deletions

View File

@@ -1,5 +1,7 @@
### Unreleased
### 3.5.3 - 2015-12-10
* bug fixes
* Fix password reset for records where `confirmation_required?` is disabled and
`confirmation_sent_at` is nil. (by @andygeers)

View File

@@ -1,7 +1,7 @@
PATH
remote: .
specs:
devise (3.5.2)
devise (3.5.3)
bcrypt (~> 3.0)
orm_adapter (~> 0.1)
railties (>= 3.2.6, < 5)
@@ -153,7 +153,7 @@ GEM
thread_safe (0.3.5)
tzinfo (1.2.2)
thread_safe (~> 0.1)
warden (1.2.3)
warden (1.2.4)
rack (>= 1.0)
webrat (0.7.3)
nokogiri (>= 1.2.0)

View File

@@ -49,7 +49,7 @@ GIT
PATH
remote: ..
specs:
devise (3.4.1)
devise (3.5.3)
bcrypt (~> 3.0)
orm_adapter (~> 0.1)
railties (>= 3.2.6, < 5)
@@ -142,7 +142,7 @@ GEM
polyglot
polyglot (>= 0.3.1)
tzinfo (0.3.43)
warden (1.2.3)
warden (1.2.4)
rack (>= 1.0)
webrat (0.7.3)
nokogiri (>= 1.2.0)
@@ -167,3 +167,6 @@ DEPENDENCIES
rdoc
sqlite3
webrat (= 0.7.3)
BUNDLED WITH
1.10.6

View File

@@ -43,7 +43,7 @@ GIT
PATH
remote: ..
specs:
devise (3.4.1)
devise (3.5.3)
bcrypt (~> 3.0)
orm_adapter (~> 0.1)
railties (>= 3.2.6, < 5)
@@ -136,7 +136,7 @@ GEM
thread_safe (0.3.5)
tilt (1.4.1)
tzinfo (0.3.43)
warden (1.2.3)
warden (1.2.4)
rack (>= 1.0)
webrat (0.7.3)
nokogiri (>= 1.2.0)
@@ -161,3 +161,6 @@ DEPENDENCIES
rdoc
sqlite3
webrat (= 0.7.3)
BUNDLED WITH
1.10.6

View File

@@ -48,7 +48,7 @@ GIT
PATH
remote: ..
specs:
devise (3.4.1)
devise (3.5.3)
bcrypt (~> 3.0)
orm_adapter (~> 0.1)
railties (>= 3.2.6, < 5)
@@ -142,7 +142,7 @@ GEM
tilt (1.4.1)
tzinfo (1.2.2)
thread_safe (~> 0.1)
warden (1.2.3)
warden (1.2.4)
rack (>= 1.0)
webrat (0.7.3)
nokogiri (>= 1.2.0)
@@ -167,3 +167,6 @@ DEPENDENCIES
rdoc
sqlite3
webrat (= 0.7.3)
BUNDLED WITH
1.10.6

View File

@@ -58,7 +58,7 @@ GIT
PATH
remote: ..
specs:
devise (3.4.1)
devise (3.5.3)
bcrypt (~> 3.0)
orm_adapter (~> 0.1)
railties (>= 3.2.6, < 5)
@@ -164,7 +164,7 @@ GEM
tilt (1.4.1)
tzinfo (1.2.2)
thread_safe (~> 0.1)
warden (1.2.3)
warden (1.2.4)
rack (>= 1.0)
webrat (0.7.3)
nokogiri (>= 1.2.0)
@@ -189,3 +189,6 @@ DEPENDENCIES
rdoc
sqlite3
webrat (= 0.7.3)
BUNDLED WITH
1.10.6

View File

@@ -1,3 +1,3 @@
module Devise
VERSION = "3.5.2".freeze
VERSION = "3.5.3".freeze
end