diff --git a/CHANGELOG.md b/CHANGELOG.md index f0aa14b5..bf3d98e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Change Log +## [v5.12.0](https://github.com/auth0/ruby-auth0/tree/v5.12.0) (2023-03-13) +[Full Changelog](https://github.com/auth0/ruby-auth0/compare/v5.11.0...v5.12.0) + +**Added** +- [SDK-4014] User Authentication Method management API support [\#450](https://github.com/auth0/ruby-auth0/pull/450) ([stevehobbsdev](https://github.com/stevehobbsdev)) + +**Fixed** +- Remove broken FAQ link from README [\#441](https://github.com/auth0/ruby-auth0/pull/441) ([joxxoxo](https://github.com/joxxoxo)) + ## [v5.11.0](https://github.com/auth0/ruby-auth0/tree/v5.11.0) (2023-01-27) [Full Changelog](https://github.com/auth0/ruby-auth0/compare/v5.10.0...v5.11.0) diff --git a/Gemfile.lock b/Gemfile.lock index b7893ccc..1ab83fa1 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - auth0 (5.11.0) + auth0 (5.12.0) addressable (~> 2.8) jwt (~> 2.5) rest-client (~> 2.1) @@ -96,24 +96,24 @@ GEM method_source (1.0.0) mime-types (3.4.1) mime-types-data (~> 3.2015) - mime-types-data (3.2022.0105) - minitest (5.17.0) + mime-types-data (3.2023.0218.1) + minitest (5.18.0) multi_json (1.15.0) nenv (0.3.0) netrc (0.11.0) - nokogiri (1.14.0-aarch64-linux) + nokogiri (1.14.2-aarch64-linux) racc (~> 1.4) - nokogiri (1.14.0-arm64-darwin) + nokogiri (1.14.2-arm64-darwin) racc (~> 1.4) - nokogiri (1.14.0-x86_64-darwin) + nokogiri (1.14.2-x86_64-darwin) racc (~> 1.4) - nokogiri (1.14.0-x86_64-linux) + nokogiri (1.14.2-x86_64-linux) racc (~> 1.4) notiffany (0.1.3) nenv (~> 0.1) shellany (~> 0.0) parallel (1.22.1) - parser (3.2.1.0) + parser (3.2.1.1) ast (~> 2.4.1) pp (0.4.0) prettyprint @@ -157,16 +157,16 @@ GEM rspec-core (~> 3.12.0) rspec-expectations (~> 3.12.0) rspec-mocks (~> 3.12.0) - rspec-core (3.12.0) + rspec-core (3.12.1) rspec-support (~> 3.12.0) rspec-expectations (3.12.2) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.12.0) - rspec-mocks (3.12.3) + rspec-mocks (3.12.4) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.12.0) rspec-support (3.12.0) - rubocop (1.48.0) + rubocop (1.48.1) json (~> 2.3) parallel (~> 1.10) parser (>= 3.2.0.0) @@ -213,7 +213,7 @@ GEM crack (>= 0.3.2) hashdiff (>= 0.4.0, < 2.0.0) zache (0.12.0) - zeitwerk (2.6.6) + zeitwerk (2.6.7) PLATFORMS aarch64-linux diff --git a/lib/auth0/version.rb b/lib/auth0/version.rb index 9ca9148a..cbf67837 100644 --- a/lib/auth0/version.rb +++ b/lib/auth0/version.rb @@ -1,4 +1,4 @@ # current version of gem module Auth0 - VERSION = '5.11.0'.freeze + VERSION = '5.12.0'.freeze end