Skip to content

Commit f9bebfe

Browse files
authored
Prepare to release v4.2.0 (#88)
Since this adds new functionality in a backward compatible manner, it makes sense for it to be a minor version bump from v4.1.1 -> v4.2.0. I've split #87 into two lines in the CHANGELOG for clarity. I've only included the version change of them gem itself in the Gemfile changes; I discarded changes in versions of other gems which just seemed to be because the dependencies are unconstrained and they are not needed for the changes in this release.
2 parents 212f6c7 + 86da9cf commit f9bebfe

File tree

6 files changed

+15
-6
lines changed

6 files changed

+15
-6
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313

1414
### Removed
1515

16+
## [v4.2.0]
17+
18+
### Added
19+
20+
- Allow OmniAuth setup phase to be configured (#76)
21+
- Add `RpiAuth::Models::Roles#parsed_roles` (extracted from experience-cs) (#87)
22+
- Add `RpiAuth::Models::AccountTypes#student_account?` (extracted from experience-cs) (#87)
23+
1624
## [v4.1.1]
1725

1826
### Fixed
@@ -146,7 +154,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
146154
- rails model concern to allow host app to add auth behaviour to a model
147155
- callback, logout and failure routes to handle auth
148156

149-
[Unreleased]: https://github.com/RaspberryPiFoundation/rpi-auth/compare/v4.1.1...HEAD
157+
[Unreleased]: https://github.com/RaspberryPiFoundation/rpi-auth/compare/v4.2.0...HEAD
158+
[v4.2.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v4.2.0
150159
[v4.1.1]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v4.1.1
151160
[v4.1.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v4.1.0
152161
[v4.0.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v4.0.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.1.1)
4+
rpi_auth (4.2.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.1.1)
4+
rpi_auth (4.2.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.1.1)
4+
rpi_auth (4.2.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.1.1)
4+
rpi_auth (4.2.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.1.1'
4+
VERSION = '4.2.0'
55
end

0 commit comments

Comments
 (0)