Skip to content

Commit 098345a

Browse files
committed
Prepare for version 4.7.1
1 parent caa1a55 commit 098345a

8 files changed

+16
-14
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
### Unreleased
22

3+
### 4.7.1 - 2019-09-06
4+
35
* bug fixes
46
* Fix an edge case where records with a blank `confirmation_token` could be confirmed (by @tegon)
57
* Fix typo inside `update_needs_confirmation` i18n key (by @lslm)

Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ GIT
1010
PATH
1111
remote: .
1212
specs:
13-
devise (4.7.0)
13+
devise (4.7.1)
1414
bcrypt (~> 3.0)
1515
orm_adapter (~> 0.1)
1616
railties (>= 4.1.0)

gemfiles/Gemfile.rails-4.1-stable.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ GIT
2121
PATH
2222
remote: ..
2323
specs:
24-
devise (4.6.2)
24+
devise (4.7.1)
2525
bcrypt (~> 3.0)
2626
orm_adapter (~> 0.1)
27-
railties (>= 4.1.0, < 6.0)
27+
railties (>= 4.1.0)
2828
responders
2929
warden (~> 1.2.3)
3030

@@ -54,7 +54,7 @@ GEM
5454
thread_safe (~> 0.1)
5555
tzinfo (~> 1.1)
5656
arel (5.0.1.20140414130214)
57-
bcrypt (3.1.12)
57+
bcrypt (3.1.13)
5858
bson (3.2.6)
5959
builder (3.2.3)
6060
concurrent-ruby (1.0.5)

gemfiles/Gemfile.rails-4.2-stable.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -57,18 +57,18 @@ GIT
5757
PATH
5858
remote: ..
5959
specs:
60-
devise (4.6.2)
60+
devise (4.7.1)
6161
bcrypt (~> 3.0)
6262
orm_adapter (~> 0.1)
63-
railties (>= 4.1.0, < 6.0)
63+
railties (>= 4.1.0)
6464
responders
6565
warden (~> 1.2.3)
6666

6767
GEM
6868
remote: https://rubygems.org/
6969
specs:
7070
arel (6.0.4)
71-
bcrypt (3.1.12)
71+
bcrypt (3.1.13)
7272
bson (3.2.6)
7373
builder (3.2.3)
7474
concurrent-ruby (1.0.5)

gemfiles/Gemfile.rails-5.0-stable.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ GIT
1010
PATH
1111
remote: ..
1212
specs:
13-
devise (4.7.0)
13+
devise (4.7.1)
1414
bcrypt (~> 3.0)
1515
orm_adapter (~> 0.1)
1616
railties (>= 4.1.0)
@@ -191,4 +191,4 @@ DEPENDENCIES
191191
webrat (= 0.7.3)
192192

193193
BUNDLED WITH
194-
1.17.1
194+
1.17.3

gemfiles/Gemfile.rails-5.2-stable.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ GIT
1010
PATH
1111
remote: ..
1212
specs:
13-
devise (4.7.0)
13+
devise (4.7.1)
1414
bcrypt (~> 3.0)
1515
orm_adapter (~> 0.1)
1616
railties (>= 4.1.0)
@@ -200,4 +200,4 @@ DEPENDENCIES
200200
webrat (= 0.7.3)
201201

202202
BUNDLED WITH
203-
1.17.1
203+
1.17.3

gemfiles/Gemfile.rails-6.0-stable.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ GIT
1010
PATH
1111
remote: ..
1212
specs:
13-
devise (4.7.0)
13+
devise (4.7.1)
1414
bcrypt (~> 3.0)
1515
orm_adapter (~> 0.1)
1616
railties (>= 4.1.0)
@@ -216,4 +216,4 @@ DEPENDENCIES
216216
webrat (= 0.7.3)
217217

218218
BUNDLED WITH
219-
1.17.2
219+
1.17.3

lib/devise/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Devise
4-
VERSION = "4.7.0".freeze
4+
VERSION = "4.7.1".freeze
55
end

0 commit comments

Comments
 (0)