From ba2ceab43c773c6e235b69138160a58a8dc8aa9b Mon Sep 17 00:00:00 2001 From: Patrick Cherry Date: Thu, 4 Jul 2024 12:38:02 +0100 Subject: [PATCH] Release v3.6.0 (#72) ## Added - Test controller/view to allow apps to log in without having to interact with the RPF Global Nav component. (#70) --- CHANGELOG.md | 7 ++++++- gemfiles/rails_6.1.gemfile.lock | 2 +- gemfiles/rails_7.0.gemfile.lock | 2 +- gemfiles/rails_7.1.gemfile.lock | 2 +- lib/rpi_auth/version.rb | 2 +- 5 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a427d7..b196a46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [v3.6.0] + ### Added - Test controller/view to allow apps to log in without having to interact with the RPF Global Nav component. (#70) @@ -112,7 +114,10 @@ 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.3.0...HEAD +[Unreleased]: https://github.com/RaspberryPiFoundation/rpi-auth/compare/v3.6.0...HEAD +[v3.6.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v3.6.0 +[v3.5.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v3.5.0 +[v3.4.0]: https://github.com/RaspberryPiFoundation/rpi-auth/releases/tag/v3.4.0 [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 diff --git a/gemfiles/rails_6.1.gemfile.lock b/gemfiles/rails_6.1.gemfile.lock index aa5fa4e..117d07f 100644 --- a/gemfiles/rails_6.1.gemfile.lock +++ b/gemfiles/rails_6.1.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - rpi_auth (3.5.0) + rpi_auth (3.6.0) omniauth-rails_csrf_protection (~> 1.0.0) omniauth_openid_connect (~> 0.7.1) rails (>= 6.1.4) diff --git a/gemfiles/rails_7.0.gemfile.lock b/gemfiles/rails_7.0.gemfile.lock index 26e5e5d..f203d08 100644 --- a/gemfiles/rails_7.0.gemfile.lock +++ b/gemfiles/rails_7.0.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - rpi_auth (3.5.0) + rpi_auth (3.6.0) omniauth-rails_csrf_protection (~> 1.0.0) omniauth_openid_connect (~> 0.7.1) rails (>= 6.1.4) diff --git a/gemfiles/rails_7.1.gemfile.lock b/gemfiles/rails_7.1.gemfile.lock index 94f47ae..afc064b 100644 --- a/gemfiles/rails_7.1.gemfile.lock +++ b/gemfiles/rails_7.1.gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - rpi_auth (3.5.0) + rpi_auth (3.6.0) omniauth-rails_csrf_protection (~> 1.0.0) omniauth_openid_connect (~> 0.7.1) rails (>= 6.1.4) diff --git a/lib/rpi_auth/version.rb b/lib/rpi_auth/version.rb index f990906..9536ac6 100644 --- a/lib/rpi_auth/version.rb +++ b/lib/rpi_auth/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module RpiAuth - VERSION = '3.5.0' + VERSION = '3.6.0' end