From 7f7496e8535248596d47a9f121699d99d2603919 Mon Sep 17 00:00:00 2001 From: Brandur Date: Thu, 21 Jun 2018 11:10:49 -0700 Subject: [PATCH] Bump version to 35.4.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 3b1efeebfc..d69a5e5606 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 35.4.0 - 2018-06-21 +* [#599](https://github.com/stripe/stripe-go/pull/599) Add `ExchangeRate` to `BalanceTransaction` + ## 35.3.0 - 2018-06-20 * [#596](https://github.com/stripe/stripe-go/pull/596) Add `Type` to `ProductListParams` so that products can be listed by type diff --git a/VERSION b/VERSION index 53a24aa3db..554fef9538 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -35.3.0 +35.4.0 diff --git a/stripe.go b/stripe.go index 2be09a3c32..6843598163 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.3.0" +const clientversion = "35.4.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