Skip to content

Commit 19a41f0

Browse files
authored
Prepare to release v4.1.0 (#85)
- Minor version bump (v4.0.0 -> v4.1.0), because release only includes additions and a bug fix. - Changelog updated (including the link references at the bottom).
2 parents 177cd7a + 818241f commit 19a41f0

File tree

6 files changed

+15
-8
lines changed

6 files changed

+15
-8
lines changed

CHANGELOG.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
## [Unreleased]
99

1010
### Added
11-
- Add access token-related functionality including auto-refresh (#83)
1211

1312
### Fixed
14-
- Fix use of `User#expires_at` in `SpecHelpers#stub_auth_for` (#82)
1513

1614
### Removed
1715

16+
## [v4.1.0]
17+
18+
### Added
19+
- Add access token-related functionality including auto-refresh (#83)
20+
21+
### Fixed
22+
- Fix use of `User#expires_at` in `SpecHelpers#stub_auth_for` (#82)
23+
1824
## [v4.0.0]
1925

2026
### Added
@@ -134,7 +140,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
134140
- rails model concern to allow host app to add auth behaviour to a model
135141
- callback, logout and failure routes to handle auth
136142

137-
[Unreleased]: https://github.com/RaspberryPiFoundation/rpi-auth/compare/v4.0.0...HEAD
143+
[Unreleased]: https://github.com/RaspberryPiFoundation/rpi-auth/compare/v4.1.0...HEAD
144+
[v4.1.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v4.1.0
138145
[v4.0.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v4.0.0
139146
[v3.6.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v3.6.0
140147
[v3.5.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v3.5.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 (4.0.0)
4+
rpi_auth (4.1.0)
55
oauth2
66
omniauth-rails_csrf_protection (~> 1.0.0)
77
omniauth_openid_connect (~> 0.7.1)

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 (4.0.0)
4+
rpi_auth (4.1.0)
55
oauth2
66
omniauth-rails_csrf_protection (~> 1.0.0)
77
omniauth_openid_connect (~> 0.7.1)

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 (4.0.0)
4+
rpi_auth (4.1.0)
55
oauth2
66
omniauth-rails_csrf_protection (~> 1.0.0)
77
omniauth_openid_connect (~> 0.7.1)

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 (4.0.0)
4+
rpi_auth (4.1.0)
55
oauth2
66
omniauth-rails_csrf_protection (~> 1.0.0)
77
omniauth_openid_connect (~> 0.7.1)

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 = '4.0.0'
4+
VERSION = '4.1.0'
55
end

0 commit comments

Comments
 (0)