diff --git a/CHANGELOG.md b/CHANGELOG.md index d8463ece24..28c5340f0b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 35.8.0 - 2018-06-28 +* [#607](https://github.com/stripe/stripe-go/pull/607) Add support for `PartnerID` from `stripe.SetAppInfo` + ## 35.7.0 - 2018-06-26 * [#604](https://github.com/stripe/stripe-go/pull/604) Add extra parameters `CustomerReference` and `ShippingFromZip` to `ChargeLevel3Params` and `ChargeLevel3` diff --git a/VERSION b/VERSION index dbc74ed17e..8de507cf57 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -35.7.0 +35.8.0 diff --git a/stripe.go b/stripe.go index 4697349690..c79b27e91c 100644 --- a/stripe.go +++ b/stripe.go @@ -592,7 +592,7 @@ const apiURL = "https://api.stripe.com/v1" const apiversion = "2018-02-06" // clientversion is the binding version -const clientversion = "35.7.0" +const clientversion = "35.8.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