Bump version to 11.0.0

This commit is contained in:
Ramya Rao 2024-04-10 16:01:22 -07:00
parent 93267e38ab
commit c75081f22a
3 changed files with 11 additions and 2 deletions

View File

@ -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.

View File

@ -1 +1 @@
10.15.0
11.0.0

View File

@ -1,5 +1,5 @@
# frozen_string_literal: true
module Stripe
VERSION = "10.15.0"
VERSION = "11.0.0"
end