From aa2233028d0230591b65c74a2aa4cc3ed6ba563d Mon Sep 17 00:00:00 2001 From: Remi Jannel Date: Fri, 3 Apr 2020 13:14:02 -0700 Subject: [PATCH] Bump version to 70.11.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 ad9f380999..37afc3c16a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 70.11.0 - 2020-04-03 +* [#1056](https://github.com/stripe/stripe-go/pull/1056) Add `CalculatedStatementDescriptor` on `Charge` + ## 70.10.0 - 2020-03-30 * [#1053](https://github.com/stripe/stripe-go/pull/1053) Add `AccountCapabilityCardIssuing` as a `Capability` diff --git a/README.md b/README.md index 0dc2645649..e33bda99cf 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.10.0 + github.com/stripe/stripe-go v70.11.0 ) ``` diff --git a/VERSION b/VERSION index d5d85ab305..2ef49682de 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -70.10.0 +70.11.0 diff --git a/stripe.go b/stripe.go index 236d7f0593..71e05c5425 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.10.0" +const clientversion = "70.11.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