Skip to content

Commit

Permalink
Bump version to 2.9.0
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
sej3506 committed Oct 29, 2024
1 parent 31d8d73 commit 6bd5f5b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,14 @@ complete changelog, see the git history for each version via the version links.

## [Unreleased]

[Unreleased]: https://github.com/thoughtbot/clearance/compare/v2.8.0...main
[Unreleased]: https://github.com/thoughtbot/clearance/compare/v2.9.0...main

## [2.9.0] - October 29, 2024
- Added Rails 7.2 and Ruby 3.3 to testing matrix
and overhauled dummy app (#1032) Hamed Asghari
- Droped support for Ruby 3.0 and Rails 6.1 (#1036)

[2.9.0]: https://github.com/thoughtbot/clearance/compare/v2.8.0...v2.9.0

## [2.8.0] - August 9, 2024
- Feature: Added allow_password_resets config option (#1019) Jos O'shea
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.8.0".freeze
VERSION = "2.9.0".freeze
end

3 comments on commit 6bd5f5b

@hasghari
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@sej3506 Do you know why version 2.9.0 was published with the runtime dependency railties ~> 5.0? The clearance.gemspec file correctly specifies railties >= 5.0.

@hasghari
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The other thing I noticed is that the required ruby version that is published is >= 3.1.6 even though the gemspec file specifies >= 2.4.0. I do think the gemspec file should be updated to >= 3.1, I'm just confused how the published specs for version 2.9.0 are out of sync with the gemspec file.

@sej3506
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@hasghari Good catches. These are my bad. 🤦 Patch coming out shortly.

Please sign in to comment.