From 5d75c76fb7d5a624e2a5b7d6ebcfa40a21e7f018 Mon Sep 17 00:00:00 2001 From: Richard Marmorstein Date: Thu, 18 Feb 2021 02:21:57 -0500 Subject: [PATCH] Bump version to 72.34.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 9537d14218..462aaf0727 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 72.34.0 - 2021-02-18 +* [#1252](https://github.com/stripe/stripe-go/pull/1252) API Updates + * Add support for `afterpay_clearpay` on `PaymentMethod`, `PaymentMethodParams`, `PaymentIntentPaymentMethodDataParams`, and `ChargePaymentMethodDetails` + * Add `afterpay_clearpay` as an enum member on `PaymentMethodType` + * Add support for `adjustable_quantity` on `CheckoutSessionLineItemParams` + * Add support for `on_behalf_of` on `InvoiceParams` and `Invoice` +* [#1249](https://github.com/stripe/stripe-go/pull/1249) Fix edge case panic in ParseID + ## 72.33.0 - 2021-02-09 * [#1247](https://github.com/stripe/stripe-go/pull/1247) Added support for `payment_settings` to `Invoice` diff --git a/VERSION b/VERSION index ad00da935d..e1c9bea0d9 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -72.33.0 +72.34.0 diff --git a/stripe.go b/stripe.go index 67b5e6e759..bd4423be12 100644 --- a/stripe.go +++ b/stripe.go @@ -1049,7 +1049,7 @@ func StringSlice(v []string) []*string { const apiURL = "https://api.stripe.com" // clientversion is the binding version -const clientversion = "72.33.0" +const clientversion = "72.34.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