From 3d5e483738d4886be72d72cef05c751854befa30 Mon Sep 17 00:00:00 2001 From: Sara Jackson Date: Tue, 29 Oct 2024 10:59:58 -0400 Subject: [PATCH] Update gemspec --- CHANGELOG.md | 5 ++++- Gemfile.lock | 4 ++-- clearance.gemspec | 2 +- lib/clearance/version.rb | 2 +- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 477a9906..b33ae671 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,10 @@ complete changelog, see the git history for each version via the version links. ## [Unreleased] -[Unreleased]: https://github.com/thoughtbot/clearance/compare/v2.9.0...main +[Unreleased]: https://github.com/thoughtbot/clearance/compare/v2.9.1...main + +## [2.9.1] - October 29, 2024 + - Update gemspec ## [2.9.0] - October 29, 2024 - Added Rails 7.2 and Ruby 3.3 to testing matrix diff --git a/Gemfile.lock b/Gemfile.lock index 24810472..e259810d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - clearance (2.8.0) + clearance (2.9.1) actionmailer (>= 5.0) activemodel (>= 5.0) activerecord (>= 5.0) @@ -147,7 +147,7 @@ GEM mini_mime (1.1.5) mini_portile2 (2.8.7) minitest (5.25.1) - net-imap (0.4.14) + net-imap (0.5.0) date net-protocol net-pop (0.1.2) diff --git a/clearance.gemspec b/clearance.gemspec index bd989fbf..c15968a9 100644 --- a/clearance.gemspec +++ b/clearance.gemspec @@ -45,7 +45,7 @@ Gem::Specification.new do |s| s.name = %q{clearance} s.rdoc_options = ['--charset=UTF-8'] s.require_paths = ['lib'] - s.required_ruby_version = Gem::Requirement.new('>= 2.4.0') + s.required_ruby_version = Gem::Requirement.new('>= 3.1.6') s.summary = 'Rails authentication & authorization with email & password.' s.test_files = `git ls-files -- {spec}/*`.split("\n") s.version = Clearance::VERSION diff --git a/lib/clearance/version.rb b/lib/clearance/version.rb index 40cb87bd..0ade6bb7 100644 --- a/lib/clearance/version.rb +++ b/lib/clearance/version.rb @@ -1,3 +1,3 @@ module Clearance - VERSION = "2.9.0".freeze + VERSION = "2.9.1".freeze end