From e1a59e2243477e1935e25fd2837988d0fc193900 Mon Sep 17 00:00:00 2001 From: Remi Jannel Date: Thu, 20 Jun 2019 14:10:34 -0700 Subject: [PATCH] Bump version to 61.5.0 --- CHANGELOG.md | 3 +++ README.md | 2 +- VERSION | 2 +- stripe.go | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca84a14a6b..12a7c7d83b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 61.5.0 - 2019-06-20 +* [#877](https://github.com/stripe/stripe-go/pull/877) Add `CancellationReason` to `PaymentIntent` + ## 61.4.0 - 2019-06-18 * [#845](https://github.com/stripe/stripe-go/pull/845) Add support for `CustomerBalanceTransaction` resource and APIs * [#875](https://github.com/stripe/stripe-go/pull/875) Add missing `Account` settings diff --git a/README.md b/README.md index c5bbc169a7..d5fdd273eb 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ suffix* in the path like so: module github.com/my/package require ( - github.com/stripe/stripe-go v61.4.0 + github.com/stripe/stripe-go v61.5.0 ) ``` diff --git a/VERSION b/VERSION index 6e5a5a1df1..a97254a369 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -61.4.0 +61.5.0 diff --git a/stripe.go b/stripe.go index 240a55cce6..d2aee2bafd 100644 --- a/stripe.go +++ b/stripe.go @@ -880,7 +880,7 @@ func StringSlice(v []string) []*string { const apiURL = "https://api.stripe.com" // clientversion is the binding version -const clientversion = "61.4.0" +const clientversion = "61.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