From 0b8ed663dded5012130b57ac8fa76d9ddc726bb1 Mon Sep 17 00:00:00 2001 From: Remi Jannel Date: Wed, 25 Sep 2019 10:07:24 -0700 Subject: [PATCH] Bump version to 63.2.0 --- CHANGELOG.md | 4 ++++ README.md | 2 +- VERSION | 2 +- stripe.go | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fa39eda2a9..bbe0e5752a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 63.2.0 - 2019-09-25 +* [#959](https://github.com/stripe/stripe-go/pull/959) Mark `Customer` on `PaymentMethodDetachParams` as deprecated +* [#957](https://github.com/stripe/stripe-go/pull/957) Add missing error code + ## 63.1.1 - 2019-09-23 * [#954](https://github.com/stripe/stripe-go/pull/954) Add support for `Stripe-Should-Retry` header diff --git a/README.md b/README.md index b19f0bf8fb..9f8536a76a 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.1.1 + github.com/stripe/stripe-go v63.2.0 ) ``` diff --git a/VERSION b/VERSION index 21b59ec859..61f1f83a08 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -63.1.1 +63.2.0 diff --git a/stripe.go b/stripe.go index f6631d411f..97a67c7aee 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.1.1" +const clientversion = "63.2.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