From bd26453278a2a2ee94b469dd98d333042367fb57 Mon Sep 17 00:00:00 2001 From: Olivier Bellone Date: Tue, 8 Oct 2019 17:29:26 -0700 Subject: [PATCH] Bump version to 64.0.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 c02292028a..75d019157b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 64.0.0 - 2019-10-08 +* [#968](https://github.com/stripe/stripe-go/pull/968) Update to latest API version [`2019-10-08`](https://stripe.com/docs/upgrades#2019-10-08) + ## 63.5.0 - 2019-10-03 * [#955](https://github.com/stripe/stripe-go/pull/955) Add FPX `PaymentMethod` Support * [#966](https://github.com/stripe/stripe-go/pull/966) Add the `Account` field to `BankAccount` diff --git a/README.md b/README.md index d8427c3d15..5bfe151eb8 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 v63.5.0 + github.com/stripe/stripe-go v64.0.0 ) ``` diff --git a/VERSION b/VERSION index a2fab4b7d8..b00ad46d48 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -63.5.0 +64.0.0 diff --git a/stripe.go b/stripe.go index ea304bc426..bf77860e82 100644 --- a/stripe.go +++ b/stripe.go @@ -950,7 +950,7 @@ func StringSlice(v []string) []*string { const apiURL = "https://api.stripe.com" // clientversion is the binding version -const clientversion = "63.5.0" +const clientversion = "64.0.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