diff --git a/Gemfile.lock b/Gemfile.lock index c21099096..af72def08 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - clearance (1.2.1) + clearance (1.3.0) bcrypt email_validator (~> 1.4) rails (>= 3.1) diff --git a/NEWS.md b/NEWS.md index 9f5b5fcc7..26392e17c 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,8 +1,8 @@ Thank you to all the [contributors](https://github.com/thoughtbot/clearance/graphs/contributors)! -New on MASTER -* Installing Clearance with an existing User model will now add remember tokens - to all user records. +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. New for 1.2.1 (March 6, 2014): * Query string is now included in the redirect URL when Clearance redirects to a @@ -23,7 +23,7 @@ New for 1.1.0 (November 21, 2013): * Validate email with `EmailValidator` [strict mode][strict]. * The `cookie_expiration` configuration lambda can now be called with a - `cookies` parameter. allows the Clearance cookie expiration to be set + `cookies` parameter. Allows the Clearance cookie expiration to be set according to the value of another cookie (such as `remember_me`). * A `cookie_expiration` lambda that does not accept this `cookies` parameter has been deprecated. diff --git a/lib/clearance/version.rb b/lib/clearance/version.rb index f9db7bedc..a62c14e4d 100644 --- a/lib/clearance/version.rb +++ b/lib/clearance/version.rb @@ -1,3 +1,3 @@ module Clearance - VERSION = '1.2.1' + VERSION = '1.3.0' end