Skip to content

Commit a71a352

Browse files
committed
Release 2.0.0
1 parent c08c921 commit a71a352

File tree

3 files changed

+14
-25
lines changed

3 files changed

+14
-25
lines changed

CHANGELOG.rdoc

Lines changed: 12 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,29 @@
1-
== 2.0.0.rc2
1+
== 2.0.0
22

33
Notes: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.0
44

5-
* bug fix
6-
* Fix incorrect message for locked account (by @jigyasa)
7-
* Regenerate confirmation token on reconfirmation (by @nashby)
8-
* Allow alternate ORMs to run compatibility setup code before Authenticatable is included (by @jm81)
9-
* Do not run validations unless on reconfirmable branch
10-
115
* enhancements
6+
* Add support for e-mail reconfirmation on change (by @Mandaryn and @heimidal)
7+
* Redirect users to sign in page after unlock (by @nashby)
128
* Redirect to the previous URL on timeout
139
* Inherit from the same Devise parent controller (by @sj26)
1410
* Allow parent_controller to be customizable via Devise.parent_controller, useful for engines
1511
* Allow router_name to be customizable via Devise.router_name, useful for engines
12+
* Allow alternate ORMs to run compatibility setup code before Authenticatable is included (by @jm81)
1613

1714
* deprecation
18-
* Move devise/shared/_links.erb to devise/_links.erb
19-
* Devise only supports Rails 3.1 forward
20-
* Deprecated support for nested devise_for blocks
21-
* Deprecated support to devise.registrations.reasons and devise.registrations.inactive_signed_up in favor of devise.registrations.signed_up_but_*
22-
23-
== 2.0.0.rc
24-
25-
* enhancements
26-
* Add support for e-mail reconfirmation on change (by @Mandaryn and @heimidal)
27-
* Redirect users to sign in page after unlock (by @nashby)
28-
29-
* deprecation
30-
* Devise.apply_schema is deprecated
31-
* Devise migration helpers are deprecated
15+
* Devise now only supports Rails 3.1 forward
16+
* Devise.confirm_within was deprecated in favor Devise.allow_unconfirmed_access_for
17+
* Devise.stateless_token= is deprecated in favor of appending :token_auth to Devise.skip_session_storage
18+
* Usage of Devise.apply_schema is deprecated
19+
* Usage of Devise migration helpers are deprecated
3220
* Usage of Devise.remember_across_browsers was deprecated
33-
* Usage of Devise.confirm_within was deprecated in favor Devise.allow_unconfirmed_access_for
3421
* Usage of rememberable with remember_token was removed
3522
* Usage of recoverable without reset_password_sent_at was removed
3623
* Usage of Devise.case_insensitive_keys equals to false was removed
37-
* Usage of Devise.stateless_token= is deprecated in favor of appending :token_auth to Devise.skip_session_storage
24+
* Move devise/shared/_links.erb to devise/_links.erb
25+
* Deprecated support of nested devise_for blocks
26+
* Deprecated support to devise.registrations.reasons and devise.registrations.inactive_signed_up in favor of devise.registrations.signed_up_but_*
3827

3928
== 1.5.3
4029

README.rdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*IMPORTANT:* Devise 2.0.0.rc is out. If you are upgrading, please read: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.0
1+
*IMPORTANT:* Devise 2.0.0 is out. If you are upgrading, please read: https://github.com/plataformatec/devise/wiki/How-To:-Upgrade-to-Devise-2.0
22

33
== Devise
44

lib/devise/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Devise
2-
VERSION = "2.0.0.rc2".freeze
2+
VERSION = "2.0.0".freeze
33
end

0 commit comments

Comments
 (0)