From 6fa66eac3d47b497b26459ef913495ffd79182ac Mon Sep 17 00:00:00 2001 From: Brandur Date: Wed, 22 Apr 2020 18:14:25 -0700 Subject: [PATCH] Bump version to 71.5.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 8644ebafa6..8a216e1bb6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 71.5.0 - 2020-04-22 +* [#1080](https://github.com/stripe/stripe-go/pull/1080) Remove spurious newline in logs + ## 71.4.0 - 2020-04-22 * [#1079](https://github.com/stripe/stripe-go/pull/1079) Add support for `Coupon` when for subscriptions on Checkout diff --git a/VERSION b/VERSION index aa80fe5f5e..14b475024e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -71.4.0 +71.5.0 diff --git a/stripe.go b/stripe.go index 9c3f35660a..ec9d5a3a14 100644 --- a/stripe.go +++ b/stripe.go @@ -992,7 +992,7 @@ func StringSlice(v []string) []*string { const apiURL = "https://api.stripe.com" // clientversion is the binding version -const clientversion = "71.4.0" +const clientversion = "71.5.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