From 26ccee66f50d319a98413fba15d301fe0e6d2f29 Mon Sep 17 00:00:00 2001 From: Remi Jannel Date: Tue, 29 Sep 2020 23:00:09 -0700 Subject: [PATCH] Bump version to 72.9.0 --- CHANGELOG.md | 3 +++ VERSION | 2 +- stripe.go | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9fa9f7270f..16e2693de8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 72.9.0 - 2020-09-29 +* [#1194](https://github.com/stripe/stripe-go/pull/1194) Add support for the `SetupAttempt` resource and List API + ## 72.8.0 - 2020-09-28 * [#1192](https://github.com/stripe/stripe-go/pull/1192) Add support for OXXO Payments capability on `Account` diff --git a/VERSION b/VERSION index d6847def35..714181a0e9 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -72.8.0 +72.9.0 diff --git a/stripe.go b/stripe.go index 34478433fb..c1ec28104f 100644 --- a/stripe.go +++ b/stripe.go @@ -1044,7 +1044,7 @@ func StringSlice(v []string) []*string { const apiURL = "https://api.stripe.com" // clientversion is the binding version -const clientversion = "72.8.0" +const clientversion = "72.9.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