From 4f3efa91c5958010cbd36ada1622d27938fadf7b Mon Sep 17 00:00:00 2001 From: Remi Jannel Date: Mon, 13 Apr 2020 13:45:16 -0700 Subject: [PATCH] Bump version to 70.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 b81d97bee4..25414f6a72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 70.14.0 - 2020-04-13 +* [#1062](https://github.com/stripe/stripe-go/pull/1062) Add `Description` on `WebhookEndpoint` + ## 70.13.0 - 2020-04-10 * [#1060](https://github.com/stripe/stripe-go/pull/1060) Add support for `CancellationReason` on Issuing `Card` * [#1058](https://github.com/stripe/stripe-go/pull/1058) Add support for `TaxIDTypeSGGST` on `TaxId` diff --git a/README.md b/README.md index b85482a18a..0fd8f92b73 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 v70.13.0 + github.com/stripe/stripe-go v70.14.0 ) ``` diff --git a/VERSION b/VERSION index c96bc10e80..64eecb72bc 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -70.13.0 +70.14.0 diff --git a/stripe.go b/stripe.go index 907943df41..df93226fcb 100644 --- a/stripe.go +++ b/stripe.go @@ -940,7 +940,7 @@ func StringSlice(v []string) []*string { const apiURL = "https://api.stripe.com" // clientversion is the binding version -const clientversion = "70.13.0" +const clientversion = "70.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