Skip to content

Commit 90f1029

Browse files
committed
Release 2.8.0
1 parent dbfe55d commit 90f1029

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,15 @@ complete changelog, see the git history for each version via the version links.
55

66
## [Unreleased]
77

8-
[Unreleased]: https://github.com/thoughtbot/clearance/compare/v2.7.2...main
8+
[Unreleased]: https://github.com/thoughtbot/clearance/compare/v2.8.0...main
9+
10+
## [2.8.0] - August 9, 2024
11+
- Feature: Added allow_password_resets config option (#1019) Jos O'shea
12+
- Added dependabot (#1028) Karine Vieira
13+
- Fixed some deprecation warnings (#1018)
14+
- Added a dynamic workflow to update SECURITY.md
15+
16+
[2.8.0]: https://github.com/thoughtbot/clearance/compare/v2.7.2...v2.8.0
917

1018
## [2.7.2] - June 28, 2024
1119
- Fix method redefinition and circular require issues (#1027)

Gemfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
clearance (2.7.2)
4+
clearance (2.8.0)
55
actionmailer (>= 5.0)
66
activemodel (>= 5.0)
77
activerecord (>= 5.0)
@@ -107,7 +107,7 @@ GEM
107107
factory_bot_rails (6.2.0)
108108
factory_bot (~> 6.2.0)
109109
railties (>= 5.0.0)
110-
ffi (1.16.3)
110+
ffi (1.17.0)
111111
ffi-compiler (1.3.2)
112112
ffi (>= 1.15.5)
113113
rake
@@ -130,7 +130,7 @@ GEM
130130
mini_mime (1.1.2)
131131
mini_portile2 (2.8.6)
132132
minitest (5.22.3)
133-
net-imap (0.4.11)
133+
net-imap (0.4.14)
134134
date
135135
net-protocol
136136
net-pop (0.1.2)

clearance.gemspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ Gem::Specification.new do |s|
2828
'Jason Morrison',
2929
'Galen Frechette',
3030
'Josh Steiner',
31-
'Dorian Marié'
31+
'Dorian Marié',
32+
'Sara Jackson'
3233
]
3334
s.description = <<-DESCRIPTION
3435
Clearance is built to support authentication and authorization via an

lib/clearance/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Clearance
2-
VERSION = "2.7.2".freeze
2+
VERSION = "2.8.0".freeze
33
end

0 commit comments

Comments
 (0)