From 13d29913e9d85a422195fa6571a8b51cffe069f7 Mon Sep 17 00:00:00 2001 From: Remi Jannel Date: Tue, 25 Jun 2019 12:15:26 -0700 Subject: [PATCH] Bump version to 61.7.1 --- 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 dbd7348b88..cd0ea27bf9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 61.7.1 - 2019-06-25 +* [#881](https://github.com/stripe/stripe-go/pull/881) Documentation fixes + ## 61.7.0 - 2019-06-25 * [#880](https://github.com/stripe/stripe-go/pull/880) * Add support for `CollectionMethod` on `Invoice`, `Subscription` and `SubscriptionSchedule` diff --git a/README.md b/README.md index 9918072928..8df45a3070 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.7.0 + github.com/stripe/stripe-go v61.7.1 ) ``` diff --git a/VERSION b/VERSION index da2713f830..14e3460225 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -61.7.0 +61.7.1 diff --git a/stripe.go b/stripe.go index 34b2bcf720..5fa13d7deb 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.7.0" +const clientversion = "61.7.1" // 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