From 226b72869c89b7ca40047ab59e3e38289c9a5129 Mon Sep 17 00:00:00 2001 From: Yejia Chen Date: Tue, 15 Feb 2022 17:55:00 -0500 Subject: [PATCH] Bump version to 72.87.0 --- CHANGELOG.md | 9 +++++++++ VERSION | 2 +- stripe.go | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 53e20e9386..0088bc2352 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 72.87.0 - 2022-02-15 +* [#1419](https://github.com/stripe/stripe-go/pull/1419) Add tests for verify_microdeposits +* [#1416](https://github.com/stripe/stripe-go/pull/1416) API Updates + * Add support for `VerifyMicrodeposits` method on resources `PaymentIntent` and `SetupIntent` + * Add support for new value `grabpay` on enums `InvoicePaymentSettingsPaymentMethodTypes` and `SubscriptionPaymentSettingsPaymentMethodTypes` +* [#1415](https://github.com/stripe/stripe-go/pull/1415) API Updates + * Add support for `PIN` on `IssuingCardParams` +* [#1414](https://github.com/stripe/stripe-go/pull/1414) Add comments for deprecated error types + ## 72.86.0 - 2022-01-25 * [#1411](https://github.com/stripe/stripe-go/pull/1411) API Updates * Add support for `PhoneNumberCollection` on `PaymentLinkParams` and `PaymentLink` diff --git a/VERSION b/VERSION index 8282240ea8..3b00af1f82 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -72.86.0 +72.87.0 diff --git a/stripe.go b/stripe.go index 875ce4dfd4..9e5dc9be01 100644 --- a/stripe.go +++ b/stripe.go @@ -1203,7 +1203,7 @@ func StringSlice(v []string) []*string { // // clientversion is the binding version -const clientversion = "72.86.0" +const clientversion = "72.87.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