From 90f1029a27f6b0ce15da22be479978ddd321abd2 Mon Sep 17 00:00:00 2001 From: Sara Jackson Date: Fri, 9 Aug 2024 11:37:43 -0400 Subject: [PATCH] Release 2.8.0 --- CHANGELOG.md | 10 +++++++++- Gemfile.lock | 6 +++--- clearance.gemspec | 3 ++- lib/clearance/version.rb | 2 +- 4 files changed, 15 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2438b34f..3a3cd334 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,15 @@ complete changelog, see the git history for each version via the version links. ## [Unreleased] -[Unreleased]: https://github.com/thoughtbot/clearance/compare/v2.7.2...main +[Unreleased]: https://github.com/thoughtbot/clearance/compare/v2.8.0...main + +## [2.8.0] - August 9, 2024 +- Feature: Added allow_password_resets config option (#1019) Jos O'shea +- Added dependabot (#1028) Karine Vieira +- Fixed some deprecation warnings (#1018) +- Added a dynamic workflow to update SECURITY.md + +[2.8.0]: https://github.com/thoughtbot/clearance/compare/v2.7.2...v2.8.0 ## [2.7.2] - June 28, 2024 - Fix method redefinition and circular require issues (#1027) diff --git a/Gemfile.lock b/Gemfile.lock index 44f2869a..f8833fc2 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - clearance (2.7.2) + clearance (2.8.0) actionmailer (>= 5.0) activemodel (>= 5.0) activerecord (>= 5.0) @@ -107,7 +107,7 @@ GEM factory_bot_rails (6.2.0) factory_bot (~> 6.2.0) railties (>= 5.0.0) - ffi (1.16.3) + ffi (1.17.0) ffi-compiler (1.3.2) ffi (>= 1.15.5) rake @@ -130,7 +130,7 @@ GEM mini_mime (1.1.2) mini_portile2 (2.8.6) minitest (5.22.3) - net-imap (0.4.11) + net-imap (0.4.14) date net-protocol net-pop (0.1.2) diff --git a/clearance.gemspec b/clearance.gemspec index 3607fc34..e91d8c12 100644 --- a/clearance.gemspec +++ b/clearance.gemspec @@ -28,7 +28,8 @@ Gem::Specification.new do |s| 'Jason Morrison', 'Galen Frechette', 'Josh Steiner', - 'Dorian MariƩ' + 'Dorian MariƩ', + 'Sara Jackson' ] s.description = <<-DESCRIPTION Clearance is built to support authentication and authorization via an diff --git a/lib/clearance/version.rb b/lib/clearance/version.rb index e77ce3ee..7ab907b5 100644 --- a/lib/clearance/version.rb +++ b/lib/clearance/version.rb @@ -1,3 +1,3 @@ module Clearance - VERSION = "2.7.2".freeze + VERSION = "2.8.0".freeze end