diff --git a/CHANGELOG.md b/CHANGELOG.md index 0433227a7c..4201633c30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 35.10.0 - 2018-07-04 +* [#616](https://github.com/stripe/stripe-go/pull/616) Adding missing clients to the `API` struct including a `UsageRecords` entry + ## 35.9.0 - 2018-07-03 * [#611](https://github.com/stripe/stripe-go/pull/611) Introduce `GetBackendWithConfig` and make logging configurable per backend diff --git a/VERSION b/VERSION index de0b0e977a..c149176995 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -35.9.0 +35.10.0 diff --git a/stripe.go b/stripe.go index 69bd384e79..0b528436c5 100644 --- a/stripe.go +++ b/stripe.go @@ -690,7 +690,7 @@ const apiURL = "https://api.stripe.com" const apiversion = "2018-02-06" // clientversion is the binding version -const clientversion = "35.9.0" +const clientversion = "35.10.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