diff --git a/CHANGELOG.md b/CHANGELOG.md index 83a2fa4a7d..e12417b4a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 35.2.0 - 2018-06-19 +* [#595](https://github.com/stripe/stripe-go/pull/595) Add `Product` to `PlanListParams` so that plans can be listed by product + ## 35.1.0 - 2018-06-17 * [#592](https://github.com/stripe/stripe-go/pull/592) Add `Name` field to `Coupon` and `CouponParams` diff --git a/VERSION b/VERSION index 4710c8eb98..6ee5ed10b7 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -35.1.0 +35.2.0 diff --git a/stripe.go b/stripe.go index f7a5c95c95..d346295359 100644 --- a/stripe.go +++ b/stripe.go @@ -591,7 +591,7 @@ const apiURL = "https://api.stripe.com/v1" const apiversion = "2018-02-06" // clientversion is the binding version -const clientversion = "35.1.0" +const clientversion = "35.2.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