Skip to content

Commit e7ca0bf

Browse files
committed
Release v3.3.0
1 parent 033c341 commit e7ca0bf

File tree

4 files changed

+15
-10
lines changed

4 files changed

+15
-10
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [v3.3.0]
11+
1012
### Added
1113

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

98-
[Unreleased]: https://github.com/RaspberryPiFoundation/rpi-auth/compare/v3.2.0...HEAD
100+
[Unreleased]: https://github.com/RaspberryPiFoundation/rpi-auth/compare/v3.3.0...HEAD
101+
[v3.3.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v3.3.0
99102
[v3.2.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v3.2.0
100103
[v3.1.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v3.1.0
101104
[v3.0.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v3.0.0

Gemfile.lock

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
rpi_auth (3.2.0)
4+
rpi_auth (3.3.0)
55
omniauth-rails_csrf_protection (~> 1.0.0)
66
omniauth_openid_connect (~> 0.7.1)
77
rails (>= 6.1.4)
@@ -77,6 +77,7 @@ GEM
7777
aes_key_wrap (1.1.0)
7878
ast (2.4.2)
7979
attr_required (1.0.1)
80+
base64 (0.2.0)
8081
bindata (2.4.15)
8182
builder (3.2.4)
8283
byebug (11.1.3)
@@ -86,7 +87,8 @@ GEM
8687
diff-lcs (1.5.0)
8788
docile (1.4.0)
8889
erubi (1.11.0)
89-
faraday (2.7.5)
90+
faraday (2.7.12)
91+
base64
9092
faraday-net_http (>= 2.0, < 3.1)
9193
ruby2_keywords (>= 0.0.4)
9294
faraday-follow_redirects (0.3.0)
@@ -162,7 +164,7 @@ GEM
162164
pry-byebug (3.10.1)
163165
byebug (~> 11.0)
164166
pry (>= 0.13, < 0.15)
165-
public_suffix (5.0.1)
167+
public_suffix (5.0.4)
166168
puma (6.2.2)
167169
nio4r (~> 2.0)
168170
racc (1.6.2)
@@ -174,8 +176,8 @@ GEM
174176
faraday-follow_redirects
175177
json-jwt (>= 1.11.0)
176178
rack (>= 2.1.0)
177-
rack-protection (3.0.6)
178-
rack
179+
rack-protection (3.1.0)
180+
rack (~> 2.2, >= 2.2.4)
179181
rack-test (2.0.2)
180182
rack (>= 1.3)
181183
rails (7.0.4)

gemfiles/rails_6.1.gemfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
rpi_auth (3.2.0)
4+
rpi_auth (3.3.0)
55
omniauth-rails_csrf_protection (~> 1.0.0)
66
omniauth_openid_connect (~> 0.7.1)
77
rails (>= 6.1.4)
@@ -116,9 +116,9 @@ GEM
116116
net-smtp (0.3.3)
117117
net-protocol
118118
nio4r (2.5.8)
119-
nokogiri (1.13.9-arm64-darwin)
119+
nokogiri (1.15.5-arm64-darwin)
120120
racc (~> 1.4)
121-
nokogiri (1.13.9-x86_64-linux)
121+
nokogiri (1.15.5-x86_64-linux)
122122
racc (~> 1.4)
123123
omniauth (2.1.1)
124124
hashie (>= 3.4.6)

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.2.0'
4+
VERSION = '3.3.0'
55
end

0 commit comments

Comments
 (0)