diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a216e1bb6..f995685207 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 71.6.0 - 2020-04-23 +* [#1083](https://github.com/stripe/stripe-go/pull/1083) Add support for `JCBPayments` and `CardIssuing` as a `Capability` +* [#1082](https://github.com/stripe/stripe-go/pull/1082) Add support for expandable `CVC` and `Number` on Issuing `Card` + ## 71.5.0 - 2020-04-22 * [#1080](https://github.com/stripe/stripe-go/pull/1080) Remove spurious newline in logs diff --git a/VERSION b/VERSION index 14b475024e..e8c56d61df 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -71.5.0 +71.6.0 diff --git a/stripe.go b/stripe.go index ec9d5a3a14..bd689fe7af 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.5.0" +const clientversion = "71.6.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