diff --git a/CHANGELOG.md b/CHANGELOG.md index 812091b06c..216eb75d28 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 72.7.0 - 2020-09-24 +* [#1190](https://github.com/stripe/stripe-go/pull/1190) Add support for BalanceTransactionTypeContribution` on `BalanceTransaction` +* [#1183](https://github.com/stripe/stripe-go/pull/1183) Add support for OXXO on `PaymentIntent` and `PaymentMethod` + ## 72.6.0 - 2020-09-23 * [#1189](https://github.com/stripe/stripe-go/pull/1189) When not retrying a request, log reason at info level diff --git a/VERSION b/VERSION index 92b64764d2..772be8877e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -72.6.0 +72.7.0 diff --git a/stripe.go b/stripe.go index 781e27723b..9216264a1b 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.6.0" +const clientversion = "72.7.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