diff --git a/CHANGELOG.md b/CHANGELOG.md index a2090b0cde..9537d14218 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 72.33.0 - 2021-02-09 +* [#1247](https://github.com/stripe/stripe-go/pull/1247) Added support for `payment_settings` to `Invoice` + ## 72.32.0 - 2021-02-03 * [#1245](https://github.com/stripe/stripe-go/pull/1245) API Updates * Add `nationality` to `Person` and `PersonParams` diff --git a/VERSION b/VERSION index 2e9d8370bb..ad00da935d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -72.32.0 +72.33.0 diff --git a/stripe.go b/stripe.go index c7a058eeef..9be3fc607d 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.32.0" +const clientversion = "72.33.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