diff --git a/CHANGELOG.md b/CHANGELOG.md index b92f82d08e..91fb0e8746 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 72.12.1 - 2020-10-09 +* [#1203](https://github.com/stripe/stripe-go/pull/1203) Bugfix: Balance.InstantAvailable should be of type Amount + ## 72.12.0 - 2020-10-08 * [#1199](https://github.com/stripe/stripe-go/pull/1199) Support sepa_debit for bancontact, ideal, sofort diff --git a/VERSION b/VERSION index a6ed377416..351cfea96d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -72.12.0 +72.12.1 diff --git a/stripe.go b/stripe.go index 2be2921fd4..2a63321361 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.12.0" +const clientversion = "72.12.1" // 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