diff --git a/CHANGELOG.md b/CHANGELOG.md index 500631b407..2be81acd7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 60.18.0 - 2019-05-22 +* [#861](https://github.com/stripe/stripe-go/pull/861) Add new tax ID types: `TaxIDTypeINGST` and `TaxIDTypeNOVAT` + ## 60.17.0 - 2019-05-16 * [#860](https://github.com/stripe/stripe-go/pull/860) Add `OffSession` parameter to payment intents diff --git a/README.md b/README.md index 83818068ec..5dd046b5f5 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.17.0 + github.com/stripe/stripe-go v60.18.0 ) ``` diff --git a/VERSION b/VERSION index a603f5e0fe..656308ffb4 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -60.17.0 +60.18.0 diff --git a/stripe.go b/stripe.go index c5bbee2502..e8cbb46d24 100644 --- a/stripe.go +++ b/stripe.go @@ -862,7 +862,7 @@ func StringSlice(v []string) []*string { const apiURL = "https://api.stripe.com" // clientversion is the binding version -const clientversion = "60.17.0" +const clientversion = "60.18.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