Bump version to 6.4.0

This commit is contained in:
Kamil Pajdzik 2022-06-17 12:17:21 -07:00
parent 8ec93fb0b7
commit 33c820096f
3 changed files with 13 additions and 2 deletions

View File

@ -1,5 +1,16 @@
# Changelog
## 6.4.0 - 2022-06-17
* [#1073](https://github.com/stripe/stripe-ruby/pull/1073) API Updates
* Add support for `fund_cash_balance` test helper method on resource `Customer`
* [#1074](https://github.com/stripe/stripe-ruby/pull/1074) Support updating pre-release versions
* [#1072](https://github.com/stripe/stripe-ruby/pull/1072) Trigger workflows on beta branches
* [#1071](https://github.com/stripe/stripe-ruby/pull/1071) Use request_stripe_object for all requests
* [#1070](https://github.com/stripe/stripe-ruby/pull/1070) API Updates
Switch from using meta-programing to generating explicit methods for custom methods.
* [#1069](https://github.com/stripe/stripe-ruby/pull/1069) chore: Stop special implementation of Account.persons method.
## 6.3.0 - 2022-06-08
* [#1063](https://github.com/stripe/stripe-ruby/pull/1063) fix: Update cash balance methods to no longer require nested ID.

View File

@ -1 +1 @@
6.3.0
6.4.0

View File

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