Prepare for `4.6.0` release

It was necessary to manually set the `sqlite3` Gem version after the
release of version `1.4.0`.
See https://github.com/rails/rails/issues/35153 for more info.
This commit is contained in:
Leonardo Tegon 2019-02-07 10:46:41 -02:00
parent 337db5a3a2
commit 45016829d6
No known key found for this signature in database
GPG Key ID: A2A555407E152BD3
13 changed files with 26 additions and 23 deletions

View File

@ -1,5 +1,7 @@
### Unreleased
### 4.6.0 - 2019-02-07
* enhancements
* Allow to skip email and password change notifications (by @iorme1)
* Include the use of `nil` for `allow_unconfirmed_access_for` in the docs (by @joaumg)

View File

@ -31,7 +31,7 @@ platforms :jruby do
end
platforms :ruby do
gem "sqlite3"
gem "sqlite3", "~> 1.3.6"
end
# TODO:

View File

@ -10,7 +10,7 @@ GIT
PATH
remote: .
specs:
devise (4.5.0)
devise (4.6.0)
bcrypt (~> 3.0)
orm_adapter (~> 0.1)
railties (>= 4.1.0, < 6.0)
@ -201,4 +201,4 @@ DEPENDENCIES
webrat (= 0.7.3)
BUNDLED WITH
1.16.1
1.17.1

View File

@ -25,7 +25,7 @@ platforms :jruby do
end
platforms :ruby do
gem "sqlite3"
gem "sqlite3", "~> 1.3.6"
end
group :mongoid do

View File

@ -21,7 +21,7 @@ GIT
PATH
remote: ..
specs:
devise (4.5.0)
devise (4.6.0)
bcrypt (~> 3.0)
orm_adapter (~> 0.1)
railties (>= 4.1.0, < 6.0)
@ -137,8 +137,8 @@ GEM
test_after_commit (1.1.0)
activerecord (>= 3.2)
thor (0.19.4)
timecop (0.8.1)
thread_safe (0.3.6)
timecop (0.8.1)
tzinfo (1.2.2)
thread_safe (~> 0.1)
warden (1.2.7)
@ -170,4 +170,4 @@ DEPENDENCIES
webrat (= 0.7.3)
BUNDLED WITH
1.16.1
1.17.3

View File

@ -26,7 +26,7 @@ platforms :jruby do
end
platforms :ruby do
gem "sqlite3"
gem "sqlite3", "~> 1.3.6"
end
group :mongoid do

View File

@ -57,7 +57,7 @@ GIT
PATH
remote: ..
specs:
devise (4.5.0)
devise (4.6.0)
bcrypt (~> 3.0)
orm_adapter (~> 0.1)
railties (>= 4.1.0, < 6.0)
@ -89,7 +89,7 @@ GEM
mime-types (3.1)
mime-types-data (~> 3.2015)
mime-types-data (3.2016.0521)
mini_portile2 (2.1.0)
mini_portile2 (2.4.0)
minitest (5.10.1)
mocha (1.2.1)
metaclass (~> 0.0.1)
@ -105,8 +105,8 @@ GEM
multi_json (1.12.1)
multi_xml (0.6.0)
multipart-post (2.0.0)
nokogiri (1.7.0.1)
mini_portile2 (~> 2.1.0)
nokogiri (1.9.1)
mini_portile2 (~> 2.4.0)
oauth2 (1.3.1)
faraday (>= 0.8, < 0.12)
jwt (~> 1.0)
@ -143,9 +143,9 @@ GEM
loofah (~> 2.0)
rake (12.0.0)
rdoc (5.1.0)
responders (2.4.0)
actionpack (>= 4.2.0, < 5.3)
railties (>= 4.2.0, < 5.3)
responders (2.4.1)
actionpack (>= 4.2.0, < 6.0)
railties (>= 4.2.0, < 6.0)
ruby-openid (2.7.0)
sprockets (3.7.1)
concurrent-ruby (~> 1.0)
@ -179,6 +179,7 @@ DEPENDENCIES
jruby-openssl
mocha (~> 1.1)
mongoid (~> 4.0)
nokogiri (= 1.9.1)
omniauth
omniauth-facebook
omniauth-oauth2
@ -191,4 +192,4 @@ DEPENDENCIES
webrat (= 0.7.3)
BUNDLED WITH
1.16.1
1.17.3

View File

@ -25,7 +25,7 @@ group :test do
end
platforms :ruby do
gem "sqlite3"
gem "sqlite3", "~> 1.3.6"
end
# TODO:

View File

@ -10,7 +10,7 @@ GIT
PATH
remote: ..
specs:
devise (4.5.0)
devise (4.6.0)
bcrypt (~> 3.0)
orm_adapter (~> 0.1)
railties (>= 4.1.0, < 6.0)
@ -191,4 +191,4 @@ DEPENDENCIES
webrat (= 0.7.3)
BUNDLED WITH
1.16.1
1.17.1

View File

@ -23,5 +23,5 @@ group :test do
end
platforms :ruby do
gem "sqlite3"
gem "sqlite3", "~> 1.3.6"
end

View File

@ -10,7 +10,7 @@ GIT
PATH
remote: ..
specs:
devise (4.5.0)
devise (4.6.0)
bcrypt (~> 3.0)
orm_adapter (~> 0.1)
railties (>= 4.1.0, < 6.0)

View File

@ -23,5 +23,5 @@ group :test do
end
platforms :ruby do
gem "sqlite3"
gem "sqlite3", "~> 1.3.6"
end

View File

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