Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update gemspec #1037

Merged
merged 1 commit into from
Oct 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
clearance (2.8.0)
clearance (2.9.1)
actionmailer (>= 5.0)
activemodel (>= 5.0)
activerecord (>= 5.0)
Expand Down Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion clearance.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/clearance/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Clearance
VERSION = "2.9.0".freeze
VERSION = "2.9.1".freeze
end