diff --git a/CHANGELOG.md b/CHANGELOG.md index ba0feb3..8933b9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,17 @@ ## [Unreleased] -- Add rubocop gems: factory_bot, infinum, rake, rspec_rails -- Fix RuboCop offenses -- Add build GHA workflow + +## [3.0.0] - 2024-06-12 + +### Changed - Remove dependency on Rails secrets and enable clients to choose how to manage secret parameters +### Added +- RuboCop gems `factory_bot`, `infinum`, `rake`, `rspec_rails` +- GitHub Actions to build app image and run checks + +### Fixed +- RuboCop offenses + ## [2.0.0] - 2024-03-12 **BREAKING CHANGE** diff --git a/Gemfile.lock b/Gemfile.lock index 40a1fca..aa0be57 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - infinum_azure (2.0.0) + infinum_azure (3.0.0) bundler devise omniauth-infinum_azure (>= 0.3.0, < 2.0) @@ -126,6 +126,7 @@ GEM marcel (1.0.2) method_source (1.0.0) mini_mime (1.1.2) + mini_portile2 (2.8.7) minitest (5.18.0) multi_xml (0.6.0) net-imap (0.3.4) @@ -138,9 +139,8 @@ GEM net-smtp (0.3.3) net-protocol nio4r (2.5.8) - nokogiri (1.14.2-aarch64-linux) - racc (~> 1.4) - nokogiri (1.14.2-arm64-darwin) + nokogiri (1.14.2) + mini_portile2 (~> 2.8.0) racc (~> 1.4) oauth2 (2.0.9) faraday (>= 0.17.3, < 3.0) @@ -282,8 +282,8 @@ GEM snaky_hash (2.0.1) hashie version_gem (~> 1.1, >= 1.1.1) - sqlite3 (1.6.1-aarch64-linux) - sqlite3 (1.6.1-arm64-darwin) + sqlite3 (1.6.1) + mini_portile2 (~> 2.8.0) thor (1.2.1) timeout (0.3.2) tzinfo (2.0.6) diff --git a/lib/infinum_azure/version.rb b/lib/infinum_azure/version.rb index ce53055..db10860 100644 --- a/lib/infinum_azure/version.rb +++ b/lib/infinum_azure/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module InfinumAzure - VERSION = '2.0.0' + VERSION = '3.0.0' end