Skip to content

Commit f2c01d4

Browse files
committed
Release 6.5.0
Signed-off-by: Ben Johnson <[email protected]>
1 parent 420f4de commit f2c01d4

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## Unreleased
99

10+
## 6.5.0 (2025-04-10)
11+
1012
- Breaking Changes
1113
- None
1214
- Added
1315
- None
1416
- Fixed
1517
- [#770](https://github.com/binarylogic/authlogic/pull/770) - Adds support for Rails 7.2 and 8.0
18+
- [#777](https://github.com/binarylogic/authlogic/pull/777) - Loads authlogic once Active Record has successfully loaded
1619

1720
## 6.4.3 (2023-12-17)
1821

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ An unobtrusive ruby authentication library based on ActiveRecord.
1111
| Version | Documentation |
1212
| ---------- | ----------------------------------------------------------------- |
1313
| Unreleased | https://github.com/binarylogic/authlogic/blob/master/README.md |
14+
| 6.5.0 | https://github.com/binarylogic/authlogic/blob/v6.5.0/README.md |
1415
| 6.4.3 | https://github.com/binarylogic/authlogic/blob/v6.4.3/README.md |
1516
| 5.2.0 | https://github.com/binarylogic/authlogic/blob/v5.2.0/README.md |
1617
| 4.5.0 | https://github.com/binarylogic/authlogic/blob/v4.5.0/README.md |
@@ -490,7 +491,8 @@ in `authlogic/session/base.rb`.
490491

491492
| Version | branch | ruby | activerecord |
492493
| ------- | ---------- | -------- | ------------- |
493-
| 6.4.3 | 6-4-stable | >= 2.4.0 | >= 5.2, < 8.1 |
494+
| 6.5.0 | 6-5-stable | >= 2.4.0 | >= 5.2, < 8.0 |
495+
| 6.4.3 | 6-4-stable | >= 2.4.0 | >= 5.2, < 7.1 |
494496
| 5.2 | 5-2-stable | >= 2.3.0 | >= 5.2, < 6.1 |
495497
| 4.5 | 4-5-stable | >= 2.3.0 | >= 4.2, < 5.3 |
496498
| 4.3 | 4-3-stable | >= 2.3.0 | >= 4.2, < 5.3 |

lib/authlogic/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ module Authlogic
1515
#
1616
# @api public
1717
def self.gem_version
18-
::Gem::Version.new("6.4.3")
18+
::Gem::Version.new("6.5.0")
1919
end
2020
end

0 commit comments

Comments
 (0)