diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f3323ce66..89818751e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 72.120.0 - 2022-07-18 +* [#1497](https://github.com/stripe/stripe-go/pull/1497) API Updates + * Add support for `BLIKPayments` on `AccountCapabilitiesParams` and `AccountCapabilities` + * Add support for `BLIK` on `ChargePaymentMethodDetails`, `MandatePaymentMethodDetails`, `PaymentIntentConfirmPaymentMethodDataParams`, `PaymentIntentConfirmPaymentMethodOptionsParams`, `PaymentIntentPaymentMethodDataParams`, `PaymentIntentPaymentMethodOptionsParams`, `PaymentIntentPaymentMethodOptions`, `PaymentMethodParams`, `PaymentMethod`, `SetupAttemptPaymentMethodDetails`, `SetupIntentConfirmPaymentMethodDataParams`, `SetupIntentConfirmPaymentMethodOptionsParams`, `SetupIntentPaymentMethodDataParams`, `SetupIntentPaymentMethodOptionsParams`, and `SetupIntentPaymentMethodOptions` + * Change type of `CheckoutSessionConsentCollectionPromotionsParams`, `CheckoutSessionConsentCollectionPromotions`, `PaymentLinkConsentCollectionPromotionsParams`, and `PaymentLinkConsentCollectionPromotions` from `literal('auto')` to `enum('auto'|'none')` + * Add support for new value `blik` on enum `PaymentLinkPaymentMethodTypes` + * Add support for new value `blik` on enum `PaymentMethodType` + ## 72.119.0 - 2022-07-12 * [#1494](https://github.com/stripe/stripe-go/pull/1494) API Updates * Add support for `CustomerDetails` on `CheckoutSessionListParams` diff --git a/VERSION b/VERSION index cb1daa8e15..9ab10ad894 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -72.119.0 +72.120.0 diff --git a/stripe.go b/stripe.go index b5c12e3683..8755ad1c71 100644 --- a/stripe.go +++ b/stripe.go @@ -1203,7 +1203,7 @@ func StringSlice(v []string) []*string { // // clientversion is the binding version -const clientversion = "72.119.0" +const clientversion = "72.120.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