diff --git a/CHANGELOG.md b/CHANGELOG.md index 724147b7c5..02eb1c4314 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 68.6.0 - 2020-01-06 +* [#1009](https://github.com/stripe/stripe-go/pull/1009) Add constant for `TaxIDTypeSGUEN` on `TaxId` + ## 68.5.0 - 2020-01-03 * [#1007](https://github.com/stripe/stripe-go/pull/1007) Add support for `SpendingLimitsCurrency` on Issuing `Card` and `Cardholder` diff --git a/README.md b/README.md index 7dfd6ab77f..0ed249bb3c 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 v68.5.0 + github.com/stripe/stripe-go v68.6.0 ) ``` diff --git a/VERSION b/VERSION index 8cdaf8bac8..01b4b999ab 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -68.5.0 +68.6.0 diff --git a/stripe.go b/stripe.go index 8f06de400e..bd9c00c474 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 = "68.5.0" +const clientversion = "68.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