From 025bbf09e9bc57a98914ddb4f6342e60cf5c8c93 Mon Sep 17 00:00:00 2001 From: Richard Marmorstein Date: Wed, 1 Sep 2021 10:30:47 -0400 Subject: [PATCH] Bump version to 72.63.0 --- CHANGELOG.md | 6 ++++++ VERSION | 2 +- stripe.go | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9dc102052f..c5b4768602 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 72.63.0 - 2021-09-01 +* [#1332](https://github.com/stripe/stripe-go/pull/1332) API Updates + * Add support for `AfterExpiration`, `ConsentCollection`, and `ExpiresAt` on `CheckoutSessionParams` and `CheckoutSession` + * Add support for `Consent` and `RecoveredFrom` on `CheckoutSession` + + ## 72.62.0 - 2021-08-27 * [#1329](https://github.com/stripe/stripe-go/pull/1329) API Updates * Add support for `CancellationReason` on `BillingPortalConfigurationFeaturesSubscriptionCancelParams`, `BillingPortalConfigurationFeaturesSubscriptionCancelParams`, and `BillingPortalConfigurationFeaturesSubscriptionCancel` diff --git a/VERSION b/VERSION index de3511533b..51c6672044 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -72.62.0 +72.63.0 diff --git a/stripe.go b/stripe.go index 47e0b3e24a..5bfce63919 100644 --- a/stripe.go +++ b/stripe.go @@ -1203,7 +1203,7 @@ func StringSlice(v []string) []*string { // // clientversion is the binding version -const clientversion = "72.62.0" +const clientversion = "72.63.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