From c44374086c258b9c6674441bcc9d3baaecb1cfca Mon Sep 17 00:00:00 2001 From: Dominic Charley-Roy Date: Wed, 29 Jun 2022 17:56:57 -0400 Subject: [PATCH] Bump version to 72.117.0 --- CHANGELOG.md | 8 ++++++++ VERSION | 2 +- stripe.go | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 96b488e4cc..0d97b6af95 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 72.117.0 - 2022-06-29 +* [#1487](https://github.com/stripe/stripe-go/pull/1487) API Updates + * Add support for `DeliverCard`, `FailCard`, `ReturnCard`, and `ShipCard` test helper methods on resource `Issuing.Card` + * Change type of `PaymentLinkPaymentMethodTypesParams` and `PaymentLinkPaymentMethodTypes` from `literal('card')` to `enum` + * Add support for `HostedRegulatoryReceiptURL` on `TreasuryReceivedCredit` and `TreasuryReceivedDebit` + +* [#1483](https://github.com/stripe/stripe-go/pull/1483) Document use of undocumented parameters/properties + ## 72.116.0 - 2022-06-23 * [#1484](https://github.com/stripe/stripe-go/pull/1484) API Updates * Add support for `CaptureMethod` on `PaymentIntentConfirmParams` and `PaymentIntentParams` diff --git a/VERSION b/VERSION index 13bcfd1cb2..4f1703b3bc 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -72.116.0 +72.117.0 diff --git a/stripe.go b/stripe.go index 75bceea7d9..9156c39243 100644 --- a/stripe.go +++ b/stripe.go @@ -1203,7 +1203,7 @@ func StringSlice(v []string) []*string { // // clientversion is the binding version -const clientversion = "72.116.0" +const clientversion = "72.117.0" // defaultHTTPTimeout is the default timeout on the http.Client used by the library. // This is chosen to be consistent with the other Stripe language libraries and