From b74b5d877caf14348e645a77f8fc6bb4e92e9e1b Mon Sep 17 00:00:00 2001 From: Dominic Charley-Roy Date: Wed, 9 Mar 2022 15:13:25 -0500 Subject: [PATCH] Bump version to 72.92.0 --- CHANGELOG.md | 5 +++++ VERSION | 2 +- stripe.go | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fa6b86742d..1a16e10564 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 72.92.0 - 2022-03-09 +* [#1430](https://github.com/stripe/stripe-go/pull/1430) API Updates + * Add support for `TestClock` on `CustomerListParams` +* [#1429](https://github.com/stripe/stripe-go/pull/1429) Fix unmarshalling error on schedule create from subscription (ApplicationFeePercent) + ## 72.91.0 - 2022-03-02 * [#1425](https://github.com/stripe/stripe-go/pull/1425) API Updates * Add support for new resources `InvoiceLineProrationDetails` and `InvoiceLineProrationDetailsCreditedItems` diff --git a/VERSION b/VERSION index 3ea3dbcf8e..9e7ff4efcf 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -72.91.0 +72.92.0 diff --git a/stripe.go b/stripe.go index 1f050c830c..f3b45e825a 100644 --- a/stripe.go +++ b/stripe.go @@ -1203,7 +1203,7 @@ func StringSlice(v []string) []*string { // // clientversion is the binding version -const clientversion = "72.91.0" +const clientversion = "72.92.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