From 188cb5eddca5dd5eedaf3e3262b0a4eec5995dc6 Mon Sep 17 00:00:00 2001 From: Dominic Charley-Roy Date: Thu, 5 May 2022 09:28:51 -0400 Subject: [PATCH] Bump version to 72.105.0 --- CHANGELOG.md | 11 +++++++++++ VERSION | 2 +- stripe.go | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 592ba74972..338723af76 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## 72.105.0 - 2022-05-05 +* [#1455](https://github.com/stripe/stripe-go/pull/1455) API Updates + * Add support for new resources `FinancialConnections.AccountOwner`, `FinancialConnections.AccountOwnership`, `FinancialConnections.Account`, and `FinancialConnections.Session` + * Add support for `FinancialConnections` on `CheckoutSessionPaymentMethodOptionsUsBankAccountParams`, `CheckoutSessionPaymentMethodOptionsUsBankAccount`, `InvoicePaymentSettingsPaymentMethodOptionsUsBankAccountParams`, `InvoicePaymentSettingsPaymentMethodOptionsUsBankAccount`, `PaymentIntentConfirmPaymentMethodOptionsUsBankAccountParams`, `PaymentIntentPaymentMethodOptionsUsBankAccountParams`, `PaymentIntentPaymentMethodOptionsUsBankAccount`, `SetupIntentConfirmPaymentMethodOptionsUsBankAccountParams`, `SetupIntentPaymentMethodOptionsUsBankAccountParams`, `SetupIntentPaymentMethodOptionsUsBankAccount`, `SubscriptionPaymentSettingsPaymentMethodOptionsUsBankAccountParams`, and `SubscriptionPaymentSettingsPaymentMethodOptionsUsBankAccount` + * Add support for `FinancialConnectionsAccount` on `PaymentIntentConfirmPaymentMethodDataUsBankAccountParams`, `PaymentIntentPaymentMethodDataUsBankAccountParams`, `PaymentMethodUsBankAccountParams`, `PaymentMethodUsBankAccount`, `SetupIntentConfirmPaymentMethodDataUsBankAccountParams`, and `SetupIntentPaymentMethodDataUsBankAccountParams` + +* [#1454](https://github.com/stripe/stripe-go/pull/1454) API Updates + * Add support for `RegisteredAddress` on `AccountIndividualParams`, `PersonParams`, `Person`, `TokenAccountIndividualParams`, and `TokenPersonParams` + * Add support for `PaymentMethodData` on `SetupIntentConfirmParams` and `SetupIntentParams` + + ## 72.104.0 - 2022-05-03 * [#1453](https://github.com/stripe/stripe-go/pull/1453) API Updates * Add support for new resource `CashBalance` diff --git a/VERSION b/VERSION index 2daa7e72e4..35451a3bfd 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -72.104.0 +72.105.0 diff --git a/stripe.go b/stripe.go index 8c0a658179..4b106717e3 100644 --- a/stripe.go +++ b/stripe.go @@ -1203,7 +1203,7 @@ func StringSlice(v []string) []*string { // // clientversion is the binding version -const clientversion = "72.104.0" +const clientversion = "72.105.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