From 0a93e406acee553dcece6034a0b3f4ab62b228b5 Mon Sep 17 00:00:00 2001 From: Brandur Date: Tue, 12 Dec 2017 16:56:24 -0800 Subject: [PATCH] Bump version to 28.8.0 --- CHANGELOG.md | 3 +++ VERSION | 2 +- stripe.go | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) 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