diff --git a/CHANGELOG.md b/CHANGELOG.md index 349a4bb17f..2c1dcdca8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 60.4.0 - 2019-04-15 +* [#833](https://github.com/stripe/stripe-go/pull/833) Add more context when failing to unmarshal JSON + ## 60.3.0 - 2019-04-12 * [#831](https://github.com/stripe/stripe-go/pull/831) Add support for `authorization_controls` on `Cardholder` and `authorization_controls[spending_limits]` added to `Card` too for Issuing resources diff --git a/README.md b/README.md index b415fc5ac4..ca7edc313e 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ suffix* in the path like so: module github.com/my/package require ( - github.com/stripe/stripe-go v60.3.0 + github.com/stripe/stripe-go v60.4.0 ) ``` diff --git a/VERSION b/VERSION index 1f65c7c39d..750b6e6eb5 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -60.3.0 +60.4.0 diff --git a/stripe.go b/stripe.go index 591d5bc996..085fc34c8d 100644 --- a/stripe.go +++ b/stripe.go @@ -823,7 +823,7 @@ func StringValue(v *string) string { const apiURL = "https://api.stripe.com" // clientversion is the binding version -const clientversion = "60.3.0" +const clientversion = "60.4.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