diff --git a/CHANGELOG.md b/CHANGELOG.md index 301119736b..e868c27e3f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 63.2.2 - 2019-09-26 +* [#963](https://github.com/stripe/stripe-go/pull/963) Update `SourceSourceOrder` `Items` field to fix unmarshalling errors + ## 63.2.1 - 2019-09-25 * [#961](https://github.com/stripe/stripe-go/pull/961) Properly tag `Customer` as deprecated in `PaymentMethodDetachParams` diff --git a/README.md b/README.md index c037e4d65a..b3e83b8629 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 v63.2.1 + github.com/stripe/stripe-go v63.2.2 ) ``` diff --git a/VERSION b/VERSION index 377c578963..696372d543 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -63.2.1 +63.2.2 diff --git a/stripe.go b/stripe.go index 00e868e67d..1879af1530 100644 --- a/stripe.go +++ b/stripe.go @@ -950,7 +950,7 @@ func StringSlice(v []string) []*string { const apiURL = "https://api.stripe.com" // clientversion is the binding version -const clientversion = "63.2.1" +const clientversion = "63.2.2" // 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