diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f57e53d3..eccf43359 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,9 @@ # Changelog +## 10.11.0 - 2024-02-29 +* [#1342](https://github.com/stripe/stripe-ruby/pull/1342) Update generated code + * Add `list_refunds` and `retrieve_refund` methods on resource `Charge`. +* [#1345](https://github.com/stripe/stripe-ruby/pull/1345) Update README to use add_beta_version + ## 10.10.0 - 2024-02-22 * [#1336](https://github.com/stripe/stripe-ruby/pull/1336) Update generated code - Add `InvoiceLineItem.update` method. diff --git a/Gemfile b/Gemfile index 9bc47fe22..62cab7f00 100644 --- a/Gemfile +++ b/Gemfile @@ -31,7 +31,7 @@ group :development do # don't install on truffleruby gem "jaro_winkler", "1.5.4" unless RUBY_ENGINE == "truffleruby" - gem "sorbet-static" + gem "sorbet" gem "tapioca" platforms :mri do diff --git a/OPENAPI_VERSION b/OPENAPI_VERSION index e3b365910..2e1dc524f 100644 --- a/OPENAPI_VERSION +++ b/OPENAPI_VERSION @@ -1 +1 @@ -v840 \ No newline at end of file +v841 \ No newline at end of file diff --git a/VERSION b/VERSION index e8a306979..725870228 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -10.10.0 +10.11.0 diff --git a/lib/stripe/version.rb b/lib/stripe/version.rb index 284dd01eb..f41e1af70 100644 --- a/lib/stripe/version.rb +++ b/lib/stripe/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Stripe - VERSION = "10.10.0" + VERSION = "10.11.0" end