From eac5f2908ab980fb08c24c26a9e325d0b1687cb9 Mon Sep 17 00:00:00 2001 From: Derek Prior Date: Fri, 17 Oct 2014 16:04:00 -0400 Subject: [PATCH] v1.5 --- Gemfile.lock | 2 +- NEWS.md | 5 +++++ lib/clearance/version.rb | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) 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