From d354d99f9a9645f8836515bc59ff51fddff2cd29 Mon Sep 17 00:00:00 2001 From: Brandur Date: Sun, 17 Jun 2018 17:14:16 -0700 Subject: [PATCH] Bump version to 35.1.0 --- CHANGELOG.md | 3 +++ VERSION | 2 +- stripe.go | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 16f6800bcf..83a2fa4a7d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 35.1.0 - 2018-06-17 +* [#592](https://github.com/stripe/stripe-go/pull/592) Add `Name` field to `Coupon` and `CouponParams` + ## 35.0.0 - 2018-06-15 * [#557](https://github.com/stripe/stripe-go/pull/557) Add automatic retries for intermittent errors (enabling using `BackendConfiguration.SetMaxNetworkRetries`) * [#589](https://github.com/stripe/stripe-go/pull/589) Fix all `Get` methods to support standardized parameter structs + remove some deprecated functions diff --git a/VERSION b/VERSION index 6a571c2345..4710c8eb98 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -35.0.0 +35.1.0 diff --git a/stripe.go b/stripe.go index 5a531a66b5..f7a5c95c95 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.0.0" +const clientversion = "35.1.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