From 996b7eab0eb3114991e12cf7c1547bfa7a7da90e Mon Sep 17 00:00:00 2001 From: Ramya Rao Date: Thu, 9 May 2024 12:38:48 -0700 Subject: [PATCH] Bump version to 11.4.0 --- CHANGELOG.md | 8 ++++++++ VERSION | 2 +- lib/stripe/version.rb | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e44c0c5d6..f074fd12a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,12 @@ # Changelog +## 11.4.0 - 2024-05-09 +* [#1397](https://github.com/stripe/stripe-ruby/pull/1397) Update generated code + * Add support for `update` test helper method on resources `Treasury.OutboundPayment` and `Treasury.OutboundTransfer` +* [#1399](https://github.com/stripe/stripe-ruby/pull/1399) Pass params to transfer reversal + * Allow `Stripe::Transfer.retrieve_reversal()` to accept a params hash as the third argument, followed by opts. No changes to existing calls are necessary, but in a future major version this method will be updated to only accept params as the first argument. Fixes [#1393](https://github.com/stripe/stripe-ruby/issues/1393) +* [#1389](https://github.com/stripe/stripe-ruby/pull/1389) Removed jaro_winkler as a dependency +* [#1396](https://github.com/stripe/stripe-ruby/pull/1396) Start tracking `StripeClient#request` usage + ## 11.3.0 - 2024-05-02 * [#1387](https://github.com/stripe/stripe-ruby/pull/1387) Update generated code diff --git a/VERSION b/VERSION index f628d2eaf..72773deb8 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -11.3.0 +11.4.0 diff --git a/lib/stripe/version.rb b/lib/stripe/version.rb index 365ba6c1e..a822702b3 100644 --- a/lib/stripe/version.rb +++ b/lib/stripe/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Stripe - VERSION = "11.3.0" + VERSION = "11.4.0" end