From 522a17c5458aff45536b5dd85a2a929036047546 Mon Sep 17 00:00:00 2001 From: Remi Jannel Date: Mon, 10 Feb 2020 11:14:28 -0800 Subject: [PATCH] Bump version to 68.19.0 --- CHANGELOG.md | 4 ++++ README.md | 2 +- VERSION | 2 +- stripe.go | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d98af2415..9afebbc6ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 68.19.0 - 2020-02-10 +* [#1027](https://github.com/stripe/stripe-go/pull/1027) Add new constants for `TaxIDType` +* [#1028](https://github.com/stripe/stripe-go/pull/1028) Add support for `StatementDescriptorSuffix` on Checkout `Session` + ## 68.18.0 - 2020-02-05 * [#1026](https://github.com/stripe/stripe-go/pull/1026) Multiple changes on the `Balance` resource: * Add support for `ConnectReserved` diff --git a/README.md b/README.md index 945b7362c3..66f926e017 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 v68.18.0 + github.com/stripe/stripe-go v68.19.0 ) ``` diff --git a/VERSION b/VERSION index 376080b5ef..fedd135e1d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -68.18.0 +68.19.0 diff --git a/stripe.go b/stripe.go index c12d318568..ad25a9835a 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 = "68.18.0" +const clientversion = "68.19.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