diff --git a/.version b/.version index 9773998b..ed15bef9 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -v6.0.0 +v6.1.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f23e6f0..c6869108 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## [v6.1.0](https://github.com/auth0/ruby-auth0/tree/v6.1.0) (2026-08-19) +[Full Changelog](https://github.com/auth0/ruby-auth0/compare/v6.0.0...v6.1.0) + +**Added** +- feat: add Network ACL Key read/delete, Cross App Access resource app, third-party client access, and useOauthSpecScope [\#788](https://github.com/auth0/ruby-auth0/pull/788) ([fern-api[bot]](https://github.com/apps/fern-api)) + ## [v6.0.0](https://github.com/auth0/ruby-auth0/tree/v6.0.0) (2026-08-13) [Full Changelog](https://github.com/auth0/ruby-auth0/compare/v5.20.0...v6.0.0) diff --git a/Gemfile.lock b/Gemfile.lock index b443713f..55c5bca6 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - auth0 (6.0.0) + auth0 (6.1.0) addressable (~> 2.8) jwt (>= 2.7, < 4.0) rest-client (~> 2.1) diff --git a/examples/ruby-api/Gemfile.lock b/examples/ruby-api/Gemfile.lock index 61a18f88..da27bfaf 100644 --- a/examples/ruby-api/Gemfile.lock +++ b/examples/ruby-api/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: ../.. specs: - auth0 (6.0.0) + auth0 (6.1.0) addressable (~> 2.8) jwt (>= 2.7, < 4.0) rest-client (~> 2.1) diff --git a/lib/auth0/version.rb b/lib/auth0/version.rb index 29b2103b..7d05cbd5 100644 --- a/lib/auth0/version.rb +++ b/lib/auth0/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Auth0 - VERSION = "6.0.0" + VERSION = "6.1.0" end