diff --git a/Gemfile.lock b/Gemfile.lock index e3d4fe669..76f57acff 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - clearance (1.5.0) + clearance (1.5.1) bcrypt email_validator (~> 1.4) rails (>= 3.1) @@ -44,7 +44,7 @@ GEM childprocess (>= 0.3.6) cucumber (>= 1.1.1) rspec-expectations (>= 2.7.0) - bcrypt (3.1.7) + bcrypt (3.1.9) bourne (1.5.0) mocha (>= 0.13.2, < 0.15) builder (3.2.2) @@ -70,7 +70,7 @@ GEM rails (>= 3, < 5) database_cleaner (1.3.0) diff-lcs (1.2.5) - email_validator (1.4.0) + email_validator (1.5.0) activemodel erubis (2.7.0) factory_girl (4.4.0) diff --git a/NEWS.md b/NEWS.md index 3fd371775..267ad3327 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,10 @@ Thank you to all the [contributors](https://github.com/thoughtbot/clearance/graphs/contributors)! +New for 1.5.1 (December 19, 2014) +* Blowfish password strategy fixed +* Specs generated with `rails generate clearance:specs` now work properly in + RSpec 3 projects. + New for 1.5.0 (October 17, 2014) * Disable clearance routes by setting `config.routes = false`. * Running `rails generate clearance:routes` will dump the default set of diff --git a/lib/clearance/version.rb b/lib/clearance/version.rb index e0f655618..4e001f785 100644 --- a/lib/clearance/version.rb +++ b/lib/clearance/version.rb @@ -1,3 +1,3 @@ module Clearance - VERSION = '1.5.0' + VERSION = "1.5.1" end