From 48cbc94b6aa6dbb4f6d2c4149e71880b20fb6593 Mon Sep 17 00:00:00 2001 From: Richard Marmorstein Date: Tue, 6 Dec 2022 12:46:23 -0800 Subject: [PATCH] Bump version to 74.2.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 d9212f358c..8872359bb4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## 74.2.0 - 2022-12-06 +* [#1579](https://github.com/stripe/stripe-go/pull/1579) API Updates + * Add support for `FlowData` on `BillingPortalSessionParams` + * Add support for `Flow` on `BillingPortalSession` +* [#1578](https://github.com/stripe/stripe-go/pull/1578) API Updates + * Add support for `IndiaInternationalPayments` on `AccountCapabilitiesParams` and `AccountCapabilities` + * Add support for `InvoiceCreation` on `CheckoutSessionParams` and `CheckoutSession` + * Add support for `Invoice` on `CheckoutSession` + * Add support for `Metadata` on `SubscriptionSchedulePhasesItemsParams` and `SubscriptionSchedulePhasesItems` +* [#1575](https://github.com/stripe/stripe-go/pull/1575) Add version to go reference path + ## 74.1.0 - 2022-11-17 * [#1574](https://github.com/stripe/stripe-go/pull/1574) API Updates * Add support for `CustomText` on `CheckoutSessionParams`, `CheckoutSession`, `PaymentLinkParams`, and `PaymentLink` diff --git a/VERSION b/VERSION index b1cb7e669e..37c7f2b082 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -74.1.0 +74.2.0 diff --git a/stripe.go b/stripe.go index 2ca93cb1ad..202cf11366 100644 --- a/stripe.go +++ b/stripe.go @@ -1198,7 +1198,7 @@ func StringSlice(v []string) []*string { // // clientversion is the binding version -const clientversion = "74.1.0" +const clientversion = "74.2.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