From 1994d24765b1b208beb283b7123f52b29f4d35ef Mon Sep 17 00:00:00 2001 From: Ramya Rao Date: Thu, 13 Jun 2024 23:52:57 -0700 Subject: [PATCH] Bump version to 11.7.0 --- CHANGELOG.md | 4 ++++ VERSION | 2 +- lib/stripe/version.rb | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dcb0bef6..217b7caa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,8 @@ # Changelog +## 11.7.0 - 2024-06-13 +* [#1415](https://github.com/stripe/stripe-ruby/pull/1415) Deprecate StripeClient#request + * Add deprecation warning for `StripeClient#request`. This helper method will be removed in a future major version. To access response objects, use the `last_response` property on the returned resource instead. Refer to [Accessing a response object](https://github.com/stripe/stripe-ruby?tab=readme-ov-file#accessing-a-response-object) in the README for usage details. + ## 11.6.0 - 2024-05-30 * [#1404](https://github.com/stripe/stripe-ruby/pull/1404) Add method to list invoice line items * Add methods `list_lines()` on the class `Invoice` to list the invoice line items diff --git a/VERSION b/VERSION index 146d5de7..308bbae7 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -11.6.0 +11.7.0 diff --git a/lib/stripe/version.rb b/lib/stripe/version.rb index ad3e0f3e..dac728cd 100644 --- a/lib/stripe/version.rb +++ b/lib/stripe/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Stripe - VERSION = "11.6.0" + VERSION = "11.7.0" end