Prepare for `4.5.0` release

This commit is contained in:
Leonardo Tegon 2018-08-15 20:03:08 -03:00
parent 2eca92f950
commit 3b0bc08ec6
No known key found for this signature in database
GPG Key ID: A2A555407E152BD3
7 changed files with 13 additions and 11 deletions

View File

@ -1,5 +1,7 @@
### Unreleased
### 4.5.0 - 2018-08-15
* enhancements
* Use `before_action` instead of `before_filter` (by @edenthecat)
* Allow people to extend devise failure app, through invoking `ActiveSupport.run_load_hooks` once `Devise::FailureApp` is loaded (by @wnm)

View File

@ -10,7 +10,7 @@ GIT
PATH
remote: .
specs:
devise (4.4.3)
devise (4.5.0)
bcrypt (~> 3.0)
orm_adapter (~> 0.1)
railties (>= 4.1.0, < 6.0)
@ -62,7 +62,7 @@ GEM
minitest (~> 5.1)
tzinfo (~> 1.1)
arel (9.0.0)
bcrypt (3.1.11)
bcrypt (3.1.12)
builder (3.2.3)
concurrent-ruby (1.0.5)
crass (1.0.4)

View File

@ -21,7 +21,7 @@ GIT
PATH
remote: ..
specs:
devise (4.4.3)
devise (4.5.0)
bcrypt (~> 3.0)
orm_adapter (~> 0.1)
railties (>= 4.1.0, < 6.0)
@ -54,7 +54,7 @@ GEM
thread_safe (~> 0.1)
tzinfo (~> 1.1)
arel (5.0.1.20140414130214)
bcrypt (3.1.11)
bcrypt (3.1.12)
bson (3.2.6)
builder (3.2.3)
concurrent-ruby (1.0.5)

View File

@ -57,7 +57,7 @@ GIT
PATH
remote: ..
specs:
devise (4.4.3)
devise (4.5.0)
bcrypt (~> 3.0)
orm_adapter (~> 0.1)
railties (>= 4.1.0, < 6.0)
@ -68,7 +68,7 @@ GEM
remote: https://rubygems.org/
specs:
arel (6.0.4)
bcrypt (3.1.11)
bcrypt (3.1.12)
bson (3.2.6)
builder (3.2.3)
concurrent-ruby (1.0.5)

View File

@ -10,7 +10,7 @@ GIT
PATH
remote: ..
specs:
devise (4.4.3)
devise (4.5.0)
bcrypt (~> 3.0)
orm_adapter (~> 0.1)
railties (>= 4.1.0, < 6.0)
@ -58,7 +58,7 @@ GEM
minitest (~> 5.1)
tzinfo (~> 1.1)
arel (7.1.4)
bcrypt (3.1.11)
bcrypt (3.1.12)
builder (3.2.3)
concurrent-ruby (1.0.5)
erubis (2.7.0)

View File

@ -10,7 +10,7 @@ GIT
PATH
remote: ..
specs:
devise (4.4.3)
devise (4.5.0)
bcrypt (~> 3.0)
orm_adapter (~> 0.1)
railties (>= 4.1.0, < 6.0)
@ -62,7 +62,7 @@ GEM
minitest (~> 5.1)
tzinfo (~> 1.1)
arel (9.0.0)
bcrypt (3.1.11)
bcrypt (3.1.12)
builder (3.2.3)
concurrent-ruby (1.0.5)
crass (1.0.3)

View File

@ -1,5 +1,5 @@
# frozen_string_literal: true
module Devise
VERSION = "4.4.3".freeze
VERSION = "4.5.0".freeze
end