From a99dcae497cb1365f011a96206da3af0b7e61e92 Mon Sep 17 00:00:00 2001 From: Remi Jannel <remi@stripe.com> Date: Fri, 3 Jan 2020 16:32:16 -0800 Subject: [PATCH] Bump version to 68.5.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 f5970ae9e7..724147b7c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 68.5.0 - 2020-01-03 +* [#1007](https://github.com/stripe/stripe-go/pull/1007) Add support for `SpendingLimitsCurrency` on Issuing `Card` and `Cardholder` + ## 68.4.0 - 2019-12-20 * [#1006](https://github.com/stripe/stripe-go/pull/1006) Adds `ExecutivesProvided` to `Account` diff --git a/README.md b/README.md index feae22dbee..7dfd6ab77f 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.4.0 + github.com/stripe/stripe-go v68.5.0 ) ``` diff --git a/VERSION b/VERSION index 5b6b305d2c..8cdaf8bac8 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -68.4.0 +68.5.0 diff --git a/stripe.go b/stripe.go index c6741e45ec..8f06de400e 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 = "68.4.0" +const clientversion = "68.5.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