Bump version to 13.4.0-beta.1

This commit is contained in:
Helen Ye 2024-12-20 14:26:37 -05:00
parent 2a80b4cfa4
commit c37e8c0ea1
3 changed files with 10 additions and 2 deletions

View File

@ -1,5 +1,13 @@
# Changelog
## 13.4.0-beta.1 - 2024-12-20
* Support parameter and resource fields with typed RBIs
* [#1509](https://github.com/stripe/stripe-ruby/pull/1509) (beta) Publish RBIs with gem
* [#1505](https://github.com/stripe/stripe-ruby/pull/1505) Add method parameter type classes to all resources and services
* Add method parameter classes for all resources and service methods.
* These changes are NOT breaking and are purely additive. The method parameter classes are not required, we still accept hashes as well as the new `RequestParams` classes. Any additional gated parameters are still available to pass via hash. Resource fields define publicly documented fields and other deserialized fields are still accessible.
## 13.3.0-beta.3 - 2024-12-12
* [#1499](https://github.com/stripe/stripe-ruby/pull/1499) Update generated code for beta
* Add support for `AllowRedisplay` on `Card` and `Source`

View File

@ -1 +1 @@
13.3.0-beta.3
13.4.0-beta.1

View File

@ -1,5 +1,5 @@
# frozen_string_literal: true
module Stripe
VERSION = "13.3.0-beta.3"
VERSION = "13.4.0-beta.1"
end