diff --git a/.version b/.version index f53c7d9f..fd98dc1f 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -v5.16.0 \ No newline at end of file +v5.17.0 \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 862923d9..ce245212 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## [v5.17.0](https://github.com/auth0/ruby-auth0/tree/v5.17.0) (2024-05-24) +[Full Changelog](https://github.com/auth0/ruby-auth0/compare/v5.16.0...v5.17.0) + +**Added** +- Add user session management API calls [\#588](https://github.com/auth0/ruby-auth0/pull/588) ([wjohnstondrip](https://github.com/wjohnstondrip)) + ## [v5.16.0](https://github.com/auth0/ruby-auth0/tree/v5.16.0) (2023-11-13) [Full Changelog](https://github.com/auth0/ruby-auth0/compare/v5.15.0...v5.16.0) diff --git a/Gemfile.lock b/Gemfile.lock index 1e040207..19a21737 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - auth0 (5.16.0) + auth0 (5.17.0) addressable (~> 2.8) jwt (~> 2.7) rest-client (~> 2.1) diff --git a/lib/auth0/version.rb b/lib/auth0/version.rb index 8443ad92..4d55d7ab 100644 --- a/lib/auth0/version.rb +++ b/lib/auth0/version.rb @@ -1,4 +1,4 @@ # current version of gem module Auth0 - VERSION = '5.16.0'.freeze + VERSION = '5.17.0'.freeze end