Skip to content

Commit

Permalink
v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
derekprior committed Jul 18, 2014
1 parent 805e8e2 commit b2f4b24
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
clearance (1.3.0)
clearance (1.4.0)
bcrypt
email_validator (~> 1.4)
rails (>= 3.1)
Expand Down
11 changes: 11 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
Thank you to all the [contributors](https://github.com/thoughtbot/clearance/graphs/contributors)!

New for 1.4.0 (July 18, 2014)
* The sign out link in the default application layout has been replaced with a
semantically correct sign out button. This also removes an unnecessary
JavaScript dependency.
* Clearance now uses `original_fullpath` when redirecting to a saved URL after
login. This should improve the behavior in mounted engines.
* `user_params` method was added to `Clearance::UsersController` which provides
a convenient place to override the parameters used when creating users.
* Controllers now inherit from `Clearance::BaseController` to allow for easily
adding behavior to all of them.

New for 1.3.0 (March 14, 2014)
* Installing Clearance with an existing User model will now create a migration
that includes adding remember tokens to all existing user records.
Expand Down
2 changes: 1 addition & 1 deletion lib/clearance/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Clearance
VERSION = '1.3.0'
VERSION = '1.4.0'
end

0 comments on commit b2f4b24

Please sign in to comment.