Skip to content

Commit

Permalink
Release v3.3.0 (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
ce-rpf authored Nov 29, 2023
2 parents 033c341 + e7ca0bf commit 0660415
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 10 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [v3.3.0]

### Added

- Add country attribute to `Authenticable` (#60)
Expand Down Expand Up @@ -95,7 +97,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- rails model concern to allow host app to add auth behaviour to a model
- callback, logout and failure routes to handle auth

[Unreleased]: https://github.com/RaspberryPiFoundation/rpi-auth/compare/v3.2.0...HEAD
[Unreleased]: https://github.com/RaspberryPiFoundation/rpi-auth/compare/v3.3.0...HEAD
[v3.3.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v3.3.0
[v3.2.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v3.2.0
[v3.1.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v3.1.0
[v3.0.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v3.0.0
Expand Down
12 changes: 7 additions & 5 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
rpi_auth (3.2.0)
rpi_auth (3.3.0)
omniauth-rails_csrf_protection (~> 1.0.0)
omniauth_openid_connect (~> 0.7.1)
rails (>= 6.1.4)
Expand Down Expand Up @@ -77,6 +77,7 @@ GEM
aes_key_wrap (1.1.0)
ast (2.4.2)
attr_required (1.0.1)
base64 (0.2.0)
bindata (2.4.15)
builder (3.2.4)
byebug (11.1.3)
Expand All @@ -86,7 +87,8 @@ GEM
diff-lcs (1.5.0)
docile (1.4.0)
erubi (1.11.0)
faraday (2.7.5)
faraday (2.7.12)
base64
faraday-net_http (>= 2.0, < 3.1)
ruby2_keywords (>= 0.0.4)
faraday-follow_redirects (0.3.0)
Expand Down Expand Up @@ -162,7 +164,7 @@ GEM
pry-byebug (3.10.1)
byebug (~> 11.0)
pry (>= 0.13, < 0.15)
public_suffix (5.0.1)
public_suffix (5.0.4)
puma (6.2.2)
nio4r (~> 2.0)
racc (1.6.2)
Expand All @@ -174,8 +176,8 @@ GEM
faraday-follow_redirects
json-jwt (>= 1.11.0)
rack (>= 2.1.0)
rack-protection (3.0.6)
rack
rack-protection (3.1.0)
rack (~> 2.2, >= 2.2.4)
rack-test (2.0.2)
rack (>= 1.3)
rails (7.0.4)
Expand Down
6 changes: 3 additions & 3 deletions gemfiles/rails_6.1.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
rpi_auth (3.2.0)
rpi_auth (3.3.0)
omniauth-rails_csrf_protection (~> 1.0.0)
omniauth_openid_connect (~> 0.7.1)
rails (>= 6.1.4)
Expand Down Expand Up @@ -116,9 +116,9 @@ GEM
net-smtp (0.3.3)
net-protocol
nio4r (2.5.8)
nokogiri (1.13.9-arm64-darwin)
nokogiri (1.15.5-arm64-darwin)
racc (~> 1.4)
nokogiri (1.13.9-x86_64-linux)
nokogiri (1.15.5-x86_64-linux)
racc (~> 1.4)
omniauth (2.1.1)
hashie (>= 3.4.6)
Expand Down
2 changes: 1 addition & 1 deletion lib/rpi_auth/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module RpiAuth
VERSION = '3.2.0'
VERSION = '3.3.0'
end

0 comments on commit 0660415

Please sign in to comment.