diff --git a/Gemfile.lock b/Gemfile.lock index c912f99a7..e3d4fe669 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - clearance (1.4.3) + clearance (1.5.0) bcrypt email_validator (~> 1.4) rails (>= 3.1) diff --git a/NEWS.md b/NEWS.md index 8a4b450de..3fd371775 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.0 (October 17, 2014) +* Disable clearance routes by setting `config.routes = false`. +* Running `rails generate clearance:routes` will dump the default set of + routes to your application's routes file for modification. + New for 1.4.3 (October 3, 2014) * Routing constraints act appropriately when session data is missing. diff --git a/lib/clearance/version.rb b/lib/clearance/version.rb index 195e007bd..e0f655618 100644 --- a/lib/clearance/version.rb +++ b/lib/clearance/version.rb @@ -1,3 +1,3 @@ module Clearance - VERSION = '1.4.3' + VERSION = '1.5.0' end