Skip to content

Commit

Permalink
Release v5.14.0 (#496)
Browse files Browse the repository at this point in the history
  • Loading branch information
stevehobbsdev authored Jul 13, 2023
1 parent 438e1b7 commit f23db58
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 23 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## [v5.14.0](https://github.com/auth0/ruby-auth0/tree/v5.14.0) (2023-07-13)
[Full Changelog](https://github.com/auth0/ruby-auth0/compare/v5.13.0...v5.14.0)

**Added**
- [SDK-4386] Support Organization Name in Authorize [\#495](https://github.com/auth0/ruby-auth0/pull/495) ([stevehobbsdev](https://github.com/stevehobbsdev))

## [v5.13.0](https://github.com/auth0/ruby-auth0/tree/v5.13.0) (2023-04-24)
[Full Changelog](https://github.com/auth0/ruby-auth0/compare/v5.12.0...v5.13.0)

Expand Down
45 changes: 23 additions & 22 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
auth0 (5.13.0)
auth0 (5.14.0)
addressable (~> 2.8)
jwt (~> 2.7)
rest-client (~> 2.1)
Expand All @@ -11,20 +11,20 @@ PATH
GEM
remote: https://rubygems.org/
specs:
actionpack (7.0.5.1)
actionview (= 7.0.5.1)
activesupport (= 7.0.5.1)
actionpack (7.0.6)
actionview (= 7.0.6)
activesupport (= 7.0.6)
rack (~> 2.0, >= 2.2.4)
rack-test (>= 0.6.3)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.0, >= 1.2.0)
actionview (7.0.5.1)
activesupport (= 7.0.5.1)
actionview (7.0.6)
activesupport (= 7.0.6)
builder (~> 3.1)
erubi (~> 1.4)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.1, >= 1.2.0)
activesupport (7.0.5.1)
activesupport (7.0.6)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
Expand Down Expand Up @@ -82,7 +82,7 @@ GEM
i18n (1.14.1)
concurrent-ruby (~> 1.0)
io-console (0.6.0)
irb (1.7.2)
irb (1.7.3)
reline (>= 0.3.6)
json (2.6.3)
jwt (2.7.1)
Expand All @@ -102,13 +102,13 @@ GEM
multi_json (1.15.0)
nenv (0.3.0)
netrc (0.11.0)
nokogiri (1.15.2-aarch64-linux)
nokogiri (1.15.3-aarch64-linux)
racc (~> 1.4)
nokogiri (1.15.2-arm64-darwin)
nokogiri (1.15.3-arm64-darwin)
racc (~> 1.4)
nokogiri (1.15.2-x86_64-darwin)
nokogiri (1.15.3-x86_64-darwin)
racc (~> 1.4)
nokogiri (1.15.2-x86_64-linux)
nokogiri (1.15.3-x86_64-linux)
racc (~> 1.4)
notiffany (0.1.3)
nenv (~> 0.1)
Expand All @@ -123,20 +123,21 @@ GEM
pry (0.14.2)
coderay (~> 1.1)
method_source (~> 1.0)
public_suffix (5.0.1)
public_suffix (5.0.3)
racc (1.7.1)
rack (2.2.7)
rack-test (0.8.3)
rack (>= 1.0, < 3)
rails-dom-testing (2.0.3)
activesupport (>= 4.2.0)
rails-dom-testing (2.1.1)
activesupport (>= 5.0.0)
minitest
nokogiri (>= 1.6)
rails-html-sanitizer (1.6.0)
loofah (~> 2.21)
nokogiri (~> 1.14)
railties (7.0.5.1)
actionpack (= 7.0.5.1)
activesupport (= 7.0.5.1)
railties (7.0.6)
actionpack (= 7.0.6)
activesupport (= 7.0.6)
method_source
rake (>= 12.2)
thor (~> 1.0)
Expand Down Expand Up @@ -165,10 +166,10 @@ GEM
rspec-expectations (3.12.3)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.12.0)
rspec-mocks (3.12.5)
rspec-mocks (3.12.6)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.12.0)
rspec-support (3.12.0)
rspec-support (3.12.1)
rubocop (1.54.1)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
Expand Down Expand Up @@ -201,7 +202,7 @@ GEM
term-ansicolor (1.7.1)
tins (~> 1.0)
terminal-notifier-guard (1.7.0)
thor (1.2.1)
thor (1.2.2)
timecop (0.9.6)
tins (1.32.1)
sync
Expand All @@ -217,7 +218,7 @@ GEM
crack (>= 0.3.2)
hashdiff (>= 0.4.0, < 2.0.0)
zache (0.13.0)
zeitwerk (2.6.7)
zeitwerk (2.6.8)

PLATFORMS
aarch64-linux
Expand Down
2 changes: 1 addition & 1 deletion lib/auth0/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# current version of gem
module Auth0
VERSION = '5.13.0'.freeze
VERSION = '5.14.0'.freeze
end

0 comments on commit f23db58

Please sign in to comment.