Skip to content

Commit cbd4006

Browse files
authored
Release v4.0.0 (#81)
- Add `CHANGELOG` entry for #79 - Update `CHANGELOG` & `RpiAuth::VERSION` in preparation to release v4.0.0
2 parents 14f3b76 + 0f4aec8 commit cbd4006

File tree

6 files changed

+16
-6
lines changed

6 files changed

+16
-6
lines changed

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Added
11+
12+
### Fixed
13+
14+
### Removed
15+
16+
## [v4.0.0]
17+
1018
### Added
1119
- Support for Ruby 3.3 (#78)
1220

1321
### Fixed
1422
- Load error when using Rake (#77)
23+
- Don't use cached user if session has been reset (#79)
1524

1625
### Removed
1726
- Support for Ruby 2.7 (#78)
@@ -123,7 +132,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
123132
- rails model concern to allow host app to add auth behaviour to a model
124133
- callback, logout and failure routes to handle auth
125134

126-
[Unreleased]: https://github.com/RaspberryPiFoundation/rpi-auth/compare/v3.6.0...HEAD
135+
[Unreleased]: https://github.com/RaspberryPiFoundation/rpi-auth/compare/v4.0.0...HEAD
136+
[v4.0.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v4.0.0
127137
[v3.6.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v3.6.0
128138
[v3.5.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v3.5.0
129139
[v3.4.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v3.4.0

gemfiles/rails_6.1.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
rpi_auth (3.6.0)
4+
rpi_auth (4.0.0)
55
omniauth-rails_csrf_protection (~> 1.0.0)
66
omniauth_openid_connect (~> 0.7.1)
77
rails (>= 6.1.4)

gemfiles/rails_7.0.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
rpi_auth (3.6.0)
4+
rpi_auth (4.0.0)
55
omniauth-rails_csrf_protection (~> 1.0.0)
66
omniauth_openid_connect (~> 0.7.1)
77
rails (>= 6.1.4)

gemfiles/rails_7.1.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
rpi_auth (3.6.0)
4+
rpi_auth (4.0.0)
55
omniauth-rails_csrf_protection (~> 1.0.0)
66
omniauth_openid_connect (~> 0.7.1)
77
rails (>= 6.1.4)

gemfiles/rails_7.2.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
rpi_auth (3.6.0)
4+
rpi_auth (4.0.0)
55
omniauth-rails_csrf_protection (~> 1.0.0)
66
omniauth_openid_connect (~> 0.7.1)
77
rails (>= 6.1.4)

lib/rpi_auth/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module RpiAuth
4-
VERSION = '3.6.0'
4+
VERSION = '4.0.0'
55
end

0 commit comments

Comments
 (0)