Bump version to 11.3.0

This commit is contained in:
Helen Ye 2024-05-02 13:56:26 -07:00
parent da6422f0a0
commit 13ee3322ff
3 changed files with 9 additions and 2 deletions

View File

@ -1,4 +1,11 @@
# Changelog
## 11.3.0 - 2024-05-02
* [#1387](https://github.com/stripe/stripe-ruby/pull/1387) Update generated code
* [#1392](https://github.com/stripe/stripe-ruby/pull/1392) Deprecate Ruby methods based on OpenAPI spec
- Mark as deprecated the `approve` and `decline` methods in `lib/stripe/resources/issuing/authorization.rb`. Instead, [respond directly to the webhook request to approve an authorization](https://stripe.com/docs/issuing/controls/real-time-authorizations#authorization-handling).
* [#1391](https://github.com/stripe/stripe-ruby/pull/1391) Add Ruby 3.3 to CI test matrix
## 11.2.0 - 2024-04-18
* [#1385](https://github.com/stripe/stripe-ruby/pull/1385) Update generated code
* Add support for `create_preview` method on resource `Invoice`

View File

@ -1 +1 @@
11.2.0
11.3.0

View File

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