diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ba036b27c..f8304ae807 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 28.8.0 - 2017-12-12 +* [#500](https://github.com/stripe/stripe-go/pull/500) Support sharing for bank accounts and cards (adds `ID` field to bank account and charge parameters) + ## 28.7.0 - 2017-12-05 * [#494](https://github.com/stripe/stripe-go/pull/494) Add `Automatic` to `Payout` struct diff --git a/VERSION b/VERSION index 51c80d063d..06ce7be8b9 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -28.7.0 +28.8.0 diff --git a/stripe.go b/stripe.go index 8ce75b4f56..26d21c974d 100644 --- a/stripe.go +++ b/stripe.go @@ -29,7 +29,7 @@ const ( const apiversion = "2017-05-25" // clientversion is the binding version -const clientversion = "28.7.0" +const clientversion = "28.8.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