From b517324c9ec973bae4919073e0d17a5e6f1832f0 Mon Sep 17 00:00:00 2001 From: Sara Jackson Date: Fri, 19 Apr 2024 09:40:54 -0400 Subject: [PATCH] Release 2.7.0 [ci skip] --- CHANGELOG.md | 13 +++++++++---- Gemfile.lock | 10 +++++----- lib/clearance/version.rb | 2 +- 3 files changed, 15 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2cc49a96..c931741f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,12 +5,17 @@ complete changelog, see the git history for each version via the version links. ## [Unreleased] -- Drops support for Rails 6.0, see https://endoflife.date/rails -- Drops support for Ruby 2.7.6, see https://endoflife.date/ruby +[Unreleased]: https://github.com/thoughtbot/clearance/compare/v2.7.0...main -[Unreleased]: https://github.com/thoughtbot/clearance/compare/v2.6.2...main +## [2.7.0] - April 19, 2024 +- Call dynamic README workflow (#1004) +- Drop Ruby 2.76 and Rails 6.0 (#1005) +- Update specs to match on translations (#1015) +- Add configuration options for failure method redirects (#1002) Dan Sharp -## [2.6.2] January 15, 2024 +[2.7.0]: https://github.com/thoughtbot/clearance/compare/v2.6.2...v2.7.0 + +## [2.6.2] - January 15, 2024 - Fix typo in Clearance::Token docs (#1000) Gabe Berke-Williams - Add CODEOWNERS file (#994) - Add support for Rails 7.1 (#995) Samuel Giddens diff --git a/Gemfile.lock b/Gemfile.lock index 009e8234..c45f2429 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - clearance (2.6.2) + clearance (2.7.0) actionmailer (>= 5.0) activemodel (>= 5.0) activerecord (>= 5.0) @@ -110,8 +110,8 @@ GEM factory_bot (~> 6.2.0) railties (>= 5.0.0) ffi (1.16.3) - ffi-compiler (1.0.1) - ffi (>= 1.0.0) + ffi-compiler (1.3.2) + ffi (>= 1.15.5) rake globalid (1.2.1) activesupport (>= 6.1) @@ -131,14 +131,14 @@ GEM mini_mime (1.1.2) mini_portile2 (2.8.0) minitest (5.15.0) - net-imap (0.4.9) + net-imap (0.4.10) date net-protocol net-pop (0.1.2) net-protocol net-protocol (0.2.2) timeout - net-smtp (0.4.0) + net-smtp (0.5.0) net-protocol nokogiri (1.13.6) mini_portile2 (~> 2.8.0) diff --git a/lib/clearance/version.rb b/lib/clearance/version.rb index 9cd437fe..ac4b73b6 100644 --- a/lib/clearance/version.rb +++ b/lib/clearance/version.rb @@ -1,3 +1,3 @@ module Clearance - VERSION = "2.6.2".freeze + VERSION = "2.7.0".freeze end