diff --git a/CHANGELOG.md b/CHANGELOG.md index 63c347d65a..57cc89572c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 70.6.0 - 2020-03-20 +* [#1046](https://github.com/stripe/stripe-go/pull/1046) Add new fields to Issuing `Card` and `Authorization` + ## 70.5.0 - 2020-03-13 * [#1044](https://github.com/stripe/stripe-go/pull/1044) Multiple changes for Issuing APIs * Rename `Speed` to `Service` on Issuing `Card` diff --git a/README.md b/README.md index ceb1db961d..abe9d4b722 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 v70.5.0 + github.com/stripe/stripe-go v70.6.0 ) ``` diff --git a/VERSION b/VERSION index d5e9eba8b2..e299ee2db7 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -70.5.0 +70.6.0 diff --git a/stripe.go b/stripe.go index 9f1feeeec8..162fd9a5fd 100644 --- a/stripe.go +++ b/stripe.go @@ -940,7 +940,7 @@ func StringSlice(v []string) []*string { const apiURL = "https://api.stripe.com" // clientversion is the binding version -const clientversion = "70.5.0" +const clientversion = "70.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