Bump version to 13.3.0

This commit is contained in:
Jesse Rosalia 2024-12-18 15:40:14 -08:00
parent d2c09c3b50
commit 332e009a57
3 changed files with 9 additions and 2 deletions

View File

@ -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`

View File

@ -1 +1 @@
13.2.0
13.3.0

View File

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