diff --git a/CHANGELOG.md b/CHANGELOG.md index 57c30488e2..299983c322 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,14 @@ # Changelog +## 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 + ## 32.1.0 - 2018-06-06 * [#572](https://github.com/stripe/stripe-go/pull/572) Add `Active` to plan parameters and response ## 32.0.1 - 2018-06-06 -* [#569](https://github.com/stripe/stripe-go/pull/569) Fix unmarshaling of expanded transaction sources in balanace transactions +* [#569](https://github.com/stripe/stripe-go/pull/569) Fix unmarshaling of expanded transaction sources in balance transactions ## 32.0.0 - 2018-06-06 * [#544](https://github.com/stripe/stripe-go/pull/544) **MAJOR** changes that make all fields on parameter structs pointers, and rename many fields on parameter and response structs to be consistent with naming in the REST API; we've written [a migration guide with complete details](https://github.com/stripe/stripe-go/blob/master/v32_migration_guide.md) to help with the upgrade diff --git a/VERSION b/VERSION index fe9ca52d15..d7af0d8c36 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -32.1.0 +32.2.0 diff --git a/stripe.go b/stripe.go index c248b4acf8..dfbfbf4b9b 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.1.0" +const clientversion = "32.2.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