diff --git a/CHANGELOG.md b/CHANGELOG.md index a8d17c72e3..50bbb9c816 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 71.11.0 - 2020-05-13 +* [#1096](https://github.com/stripe/stripe-go/pull/1096) Add support for `PurchaseDetails` on Issuing `Transaction` + ## 71.10.0 - 2020-05-12 * [#1091](https://github.com/stripe/stripe-go/pull/1091) Add support for the `LineItem` resource and APIs diff --git a/VERSION b/VERSION index ac30cdea20..bc653c881b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -71.10.0 +71.11.0 diff --git a/stripe.go b/stripe.go index e290691e19..7a63db7b85 100644 --- a/stripe.go +++ b/stripe.go @@ -992,7 +992,7 @@ func StringSlice(v []string) []*string { const apiURL = "https://api.stripe.com" // clientversion is the binding version -const clientversion = "71.10.0" +const clientversion = "71.11.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