diff --git a/CHANGELOG.md b/CHANGELOG.md index 7462e467e6..ed9d9b34d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 72.18.0 - 2020-10-22 +* [#1215](https://github.com/stripe/stripe-go/pull/1215) Add missing constants for existing types on `PaymentMethod` +* [#1216](https://github.com/stripe/stripe-go/pull/1216) Support passing `TaxRates` when creating invoice items through `Subscription` or `SubscriptionSchedule` +* [#1214](https://github.com/stripe/stripe-go/pull/1214) Put a `Deprecated` notice on `TotalCount` + ## 72.17.0 - 2020-10-20 * [#1212](https://github.com/stripe/stripe-go/pull/1212) Add `TaxIDTypeJPRN` and `TaxIDTypeRUKPP` on `TaxId` diff --git a/VERSION b/VERSION index 78beb4017b..90504d20ea 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -72.17.0 +72.18.0 diff --git a/stripe.go b/stripe.go index 3b8dc6465c..589c31b9e0 100644 --- a/stripe.go +++ b/stripe.go @@ -1044,7 +1044,7 @@ func StringSlice(v []string) []*string { const apiURL = "https://api.stripe.com" // clientversion is the binding version -const clientversion = "72.17.0" +const clientversion = "72.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