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

Prepare for 4.4.1 release

This commit is contained in:
Leonardo Tegon 2018-01-23 15:03:41 -02:00
parent 0f8695dd4b
commit e55c9caa05
No known key found for this signature in database
GPG key ID: 5B6E037E53922ECF
6 changed files with 11 additions and 9 deletions

View file

@ -1,5 +1,7 @@
### Unreleased
### 4.4.1 - 2018-01-23
* bug fixes
* Ensure Gemspec is loaded as utf-8. (by @segiddins)
* Fix `ActiveRecord` check on `Confirmable`. (by @tegon)

View file

@ -10,7 +10,7 @@ GIT
PATH
remote: .
specs:
devise (4.4.0)
devise (4.4.1)
bcrypt (~> 3.0)
orm_adapter (~> 0.1)
railties (>= 4.1.0, < 5.2)
@ -190,4 +190,4 @@ DEPENDENCIES
webrat (= 0.7.3)
BUNDLED WITH
1.15.3
1.16.0

View file

@ -21,7 +21,7 @@ GIT
PATH
remote: ..
specs:
devise (4.4.0)
devise (4.4.1)
bcrypt (~> 3.0)
orm_adapter (~> 0.1)
railties (>= 4.1.0, < 5.2)
@ -168,4 +168,4 @@ DEPENDENCIES
webrat (= 0.7.3)
BUNDLED WITH
1.15.3
1.16.0

View file

@ -57,7 +57,7 @@ GIT
PATH
remote: ..
specs:
devise (4.4.0)
devise (4.4.1)
bcrypt (~> 3.0)
orm_adapter (~> 0.1)
railties (>= 4.1.0, < 5.2)
@ -189,4 +189,4 @@ DEPENDENCIES
webrat (= 0.7.3)
BUNDLED WITH
1.15.3
1.16.0

View file

@ -10,7 +10,7 @@ GIT
PATH
remote: ..
specs:
devise (4.4.0)
devise (4.4.1)
bcrypt (~> 3.0)
orm_adapter (~> 0.1)
railties (>= 4.1.0, < 5.2)
@ -189,4 +189,4 @@ DEPENDENCIES
webrat (= 0.7.3)
BUNDLED WITH
1.15.3
1.16.0

View file

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