diff --git a/CHANGELOG.md b/CHANGELOG.md index 299983c322..f05f414e09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 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 + ## 32.2.0 - 2018-06-06 * [#571](https://github.com/stripe/stripe-go/pull/571) Add `HostedInvoiceURL` and `InvoicePDF` to `Invoice` * [#573](https://github.com/stripe/stripe-go/pull/573) Add `FormatURLPath` helper to allow safer URL path building diff --git a/VERSION b/VERSION index d7af0d8c36..f7565e2807 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -32.2.0 +32.3.0 diff --git a/stripe.go b/stripe.go index dfbfbf4b9b..8b7e70f201 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.2.0" +const clientversion = "32.3.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