From e90006b9c2987c5c9a566b52f5813b59f3dfb5ca Mon Sep 17 00:00:00 2001 From: Remi Jannel Date: Fri, 10 May 2019 12:29:24 -0700 Subject: [PATCH] Bump version to 60.14.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 5fbe1b4cdf..41d8a9f432 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 60.14.0 - 2019-05-10 +* [#858](https://github.com/stripe/stripe-go/pull/858) Add `StartDate` to `Subscription` + ## 60.13.2 - 2019-05-10 * [#857](https://github.com/stripe/stripe-go/pull/857) Fix invoice's `PaymentIntent` so its JSON tag uses API snakecase diff --git a/README.md b/README.md index 9f22c08cc3..5b38d73556 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 v60.13.2 + github.com/stripe/stripe-go v60.14.0 ) ``` diff --git a/VERSION b/VERSION index ddfe7c2b88..b4275ae470 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -60.13.2 +60.14.0 diff --git a/stripe.go b/stripe.go index 3fe26fa055..388fc318f5 100644 --- a/stripe.go +++ b/stripe.go @@ -862,7 +862,7 @@ func StringSlice(v []string) []*string { const apiURL = "https://api.stripe.com" // clientversion is the binding version -const clientversion = "60.13.2" +const clientversion = "60.14.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