From 435788e36c7689f5d6787d258f3a1e37db480b3c Mon Sep 17 00:00:00 2001 From: Brandur Date: Thu, 7 Jun 2018 11:47:40 -0700 Subject: [PATCH] Bump version to 32.4.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 f05f414e09..fda779898f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 32.4.0 - 2018-06-07 +* [#577](https://github.com/stripe/stripe-go/pull/577) Add `DocumentBack` to account legal entity identity verification parameters and response + ## 32.3.0 - 2018-06-07 * [#576](https://github.com/stripe/stripe-go/pull/576) Fix plan transform usage to use `BucketSize` instead of `DivideBy`; note this is technically a breaking API change, but we've released it as a minor because the previous manifestation didn't work diff --git a/VERSION b/VERSION index f7565e2807..70b89ee596 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -32.3.0 +32.4.0 diff --git a/stripe.go b/stripe.go index 8b7e70f201..b81bfd2e62 100644 --- a/stripe.go +++ b/stripe.go @@ -30,7 +30,7 @@ const ( const apiversion = "2018-02-06" // clientversion is the binding version -const clientversion = "32.3.0" +const clientversion = "32.4.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