diff --git a/CHANGELOG.md b/CHANGELOG.md index e312a809..adfe5e9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,13 @@ # Changelog +## 11.0.0 - 2024-04-10 +* [#1374](https://github.com/stripe/stripe-ruby/pull/1374) + + * This release changes the pinned API version to `2024-04-10`. Please read the [API Upgrade Guide](https://stripe.com/docs/upgrades#2024-04-10) and carefully review the API changes before upgrading. + + ### ⚠️ Breaking changes + + * When no `x-stripe-should-retry` header is set in the response, the library now retries all requests with `status >= 500`, not just non-POST methods. + ## 10.15.0 - 2024-04-09 * [#1377](https://github.com/stripe/stripe-ruby/pull/1377) Add last_response to StripeObject * Users can now retrieve raw response from the returned resource, using the `last_response` property. See [README](https://github.com/stripe/stripe-ruby/blob/master/README.md) for an example. diff --git a/VERSION b/VERSION index f9fb144f..275283a1 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -10.15.0 +11.0.0 diff --git a/lib/stripe/version.rb b/lib/stripe/version.rb index d9d3f13d..3ca43de9 100644 --- a/lib/stripe/version.rb +++ b/lib/stripe/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Stripe - VERSION = "10.15.0" + VERSION = "11.0.0" end