From 332e009a576b9bb685879ae503ce32d03c7a2d8f Mon Sep 17 00:00:00 2001 From: Jesse Rosalia Date: Wed, 18 Dec 2024 15:40:14 -0800 Subject: [PATCH] Bump version to 13.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 7f31f7146..44eac2f56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,11 @@ # Changelog +## 13.3.0 - 2024-12-18 +* [#1500](https://github.com/stripe/stripe-ruby/pull/1500) This release changes the pinned API version to `2024-12-18.acacia`. + +* [#1507](https://github.com/stripe/stripe-ruby/pull/1507) Pass requestor to all deserialized objects including lists + + * Fixes bug where `StripeObject` retrieved from lists could not be used to make requests, such as `refresh` + ## 13.2.0 - 2024-11-20 * [#1486](https://github.com/stripe/stripe-ruby/pull/1486) This release changes the pinned API version to `2024-11-20.acacia`. * Add support for `respond` test helper method on resource `Issuing.Authorization` diff --git a/VERSION b/VERSION index 67aee2394..ac565bc1c 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -13.2.0 +13.3.0 diff --git a/lib/stripe/version.rb b/lib/stripe/version.rb index 0ddc23ea1..61a3cc63e 100644 --- a/lib/stripe/version.rb +++ b/lib/stripe/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Stripe - VERSION = "13.2.0" + VERSION = "13.3.0" end