Skip to content

Commit

Permalink
Bump version to 2.6.2
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
sej3506 committed Jan 15, 2024
1 parent 630f175 commit 7d02233
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 23 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,20 @@ complete changelog, see the git history for each version via the version links.

## [Unreleased]

[Unreleased]: https://github.com/thoughtbot/clearance/compare/v2.6.1...main
[Unreleased]: https://github.com/thoughtbot/clearance/compare/v2.6.2...main

## [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
- Fix for setup & CI for Rails 7.1 support, update "MiniTest" to "Minitest",
add handling for different versions of Rack::Utils.set_cookie_header!, remove
deprecated active record handling in application.rb (#998)
- Update argon2 to v2.2.0 (#989) Georg Leciejewski
- Prefer literal hash creation notation (#984) Ivan Marynych
- Add Ruby 3.2.2 to testing matrix (#991)
- Replace mentions of NEWS.md with CHANGELOG.md (#982)
- Fix broken thoughtbot logo on README.md

## [2.6.1] - September 23, 2022
- Document how to report security issues
Expand Down
39 changes: 18 additions & 21 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
clearance (2.6.1)
clearance (2.6.2)
actionmailer (>= 5.0)
activemodel (>= 5.0)
activerecord (>= 5.0)
Expand Down Expand Up @@ -59,11 +59,11 @@ GEM
bundler
rake
thor (>= 0.14.0)
argon2 (2.2.0)
argon2 (2.3.0)
ffi (~> 1.15)
ffi-compiler (~> 1.0)
ast (2.4.2)
bcrypt (3.1.18)
bcrypt (3.1.20)
better_html (1.0.16)
actionview (>= 4.0)
activesupport (>= 4.0)
Expand Down Expand Up @@ -91,9 +91,9 @@ GEM
activerecord (>= 5.a)
database_cleaner-core (~> 2.0.0)
database_cleaner-core (2.0.1)
date (3.3.4)
diff-lcs (1.5.0)
digest (3.1.0)
email_validator (2.2.3)
email_validator (2.2.4)
activemodel
erb_lint (0.1.1)
activesupport
Expand All @@ -109,39 +109,37 @@ GEM
factory_bot_rails (6.2.0)
factory_bot (~> 6.2.0)
railties (>= 5.0.0)
ffi (1.15.5)
ffi (1.16.3)
ffi-compiler (1.0.1)
ffi (>= 1.0.0)
rake
globalid (1.0.0)
activesupport (>= 5.0)
globalid (1.2.1)
activesupport (>= 6.1)
html_tokenizer (0.0.7)
i18n (1.10.0)
concurrent-ruby (~> 1.0)
loofah (2.18.0)
crass (~> 1.0.2)
nokogiri (>= 1.5.9)
mail (2.7.1)
mail (2.8.1)
mini_mime (>= 0.1.1)
net-imap
net-pop
net-smtp
matrix (0.4.2)
method_source (1.0.0)
mini_mime (1.1.2)
mini_portile2 (2.8.0)
minitest (5.15.0)
net-imap (0.2.3)
digest
net-imap (0.4.9)
date
net-protocol
strscan
net-pop (0.1.1)
digest
net-pop (0.1.2)
net-protocol
net-protocol (0.2.2)
timeout
net-protocol (0.1.3)
timeout
net-smtp (0.3.1)
digest
net-smtp (0.4.0)
net-protocol
timeout
nokogiri (1.13.6)
mini_portile2 (~> 2.8.0)
racc (~> 1.4)
Expand Down Expand Up @@ -209,10 +207,9 @@ GEM
activesupport (>= 5.2.0)
smart_properties (1.17.0)
sqlite3 (1.4.2)
strscan (3.0.3)
thor (1.2.1)
timecop (0.9.5)
timeout (0.3.0)
timeout (0.4.1)
tzinfo (2.0.4)
concurrent-ruby (~> 1.0)
unicode-display_width (2.1.0)
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.6.1".freeze
VERSION = "2.6.2".freeze
end

0 comments on commit 7d02233

Please sign in to comment.