From 2a296f8e521b997e31ae74d68c1221abaa57e5e7 Mon Sep 17 00:00:00 2001 From: Olivier Bellone Date: Fri, 22 Nov 2019 13:47:43 -0800 Subject: [PATCH] Bump version to 67.6.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 019b1fb13d..ebb7383382 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 67.6.0 - 2019-11-22 +* [#994](https://github.com/stripe/stripe-go/pull/994) Support for the `now` on `StartDate` on Subscription Schedule creation + ## 67.5.0 - 2019-11-21 * [#993](https://github.com/stripe/stripe-go/pull/993) Add `PaymentIntent` filter when listing `Dispute`s diff --git a/README.md b/README.md index 7becaa65b3..57b5f615b7 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 v67.5.0 + github.com/stripe/stripe-go v67.6.0 ) ``` diff --git a/VERSION b/VERSION index c97ce710e9..8828bbc2e1 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -67.5.0 +67.6.0 diff --git a/stripe.go b/stripe.go index 84991c07c8..4995bf1a26 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 = "67.5.0" +const clientversion = "67.6.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