diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d93a518ff..17eedeca7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 72.21.0 - 2020-10-27 +* [#1220](https://github.com/stripe/stripe-go/pull/1220) Add `PreferredLocales` on `Charge` for payments made via Interac Present transactions + ## 72.20.0 - 2020-10-26 * [#1218](https://github.com/stripe/stripe-go/pull/1218) Multiple API changes * Add support for passing `CvcToken` in `PaymentIntentPaymentMethodOptionsCardOptions ` on `PaymentIntent` diff --git a/VERSION b/VERSION index 13973085e0..3a04ded71d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -72.20.0 +72.21.0 diff --git a/stripe.go b/stripe.go index a800e7d3cb..4f01bb512a 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.20.0" +const clientversion = "72.21.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