From 13ee3322ffbd7e22247e146a222ed48d8d89bccc Mon Sep 17 00:00:00 2001 From: Helen Ye Date: Thu, 2 May 2024 13:56:26 -0700 Subject: [PATCH] Bump version to 11.3.0 --- CHANGELOG.md | 7 +++++++ VERSION | 2 +- lib/stripe/version.rb | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d27419a..e44c0c5d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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` diff --git a/VERSION b/VERSION index b85c6c7b..f628d2ea 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -11.2.0 +11.3.0 diff --git a/lib/stripe/version.rb b/lib/stripe/version.rb index ed03e601..365ba6c1 100644 --- a/lib/stripe/version.rb +++ b/lib/stripe/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Stripe - VERSION = "11.2.0" + VERSION = "11.3.0" end