From 54c91620ba7e4be34694e8842b472757b57f5380 Mon Sep 17 00:00:00 2001 From: Derek Prior Date: Thu, 6 Oct 2016 14:16:31 -0400 Subject: [PATCH] v1.15.1 --- Gemfile.lock | 6 ++---- NEWS.md | 8 ++++++++ lib/clearance/version.rb | 2 +- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index f8f03b9f0..b67365cf2 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - clearance (1.15.0) + clearance (1.15.1) bcrypt email_validator (~> 1.4) rails (>= 3.1) @@ -89,10 +89,8 @@ GEM mime-types-data (3.2016.0521) mini_portile2 (2.1.0) minitest (5.9.1) - nokogiri (1.6.8) + nokogiri (1.6.8.1) mini_portile2 (~> 2.1.0) - pkg-config (~> 1.1.7) - pkg-config (1.1.7) pry (0.10.3) coderay (~> 1.1.0) method_source (~> 0.8.1) diff --git a/NEWS.md b/NEWS.md index 9ab3d5e89..215aa677e 100644 --- a/NEWS.md +++ b/NEWS.md @@ -3,6 +3,14 @@ The noteworthy changes for each Clearance version are included here. For a complete changelog, see the git history for each version via the version links. +## [1.15.1] - October 6, 2016 + +### Fixed +- Password reset form redirect no longer uses a named route helper, which means + it will work for developers that have customized their routes. + +[1.15.1]: https://github.com/thoughtbot/clearance/compare/v1.15.0...v1.15.1 + ## [1.15.0] - September 26, 2016 ### Security diff --git a/lib/clearance/version.rb b/lib/clearance/version.rb index e702abb2b..fde78e110 100644 --- a/lib/clearance/version.rb +++ b/lib/clearance/version.rb @@ -1,3 +1,3 @@ module Clearance - VERSION = "1.15.0".freeze + VERSION = "1.15.1".freeze end