From a1f223a736fa18e73da42be302fe8c65379e1a40 Mon Sep 17 00:00:00 2001 From: Olivier Bellone Date: Thu, 8 Mar 2018 16:30:08 +0100 Subject: [PATCH] Bump version to 29.3.1 --- CHANGELOG.md | 3 +++ VERSION | 2 +- stripe.go | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b7e33998cd..cb8bd0a9b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 29.3.1 - 2018-03-08 +* [#530](https://github.com/stripe/stripe-go/pull/530) Fix mixed up types in `CountrySpec.SupportedBankAccountCurrencies` + ## 29.3.0 - 2018-03-01 * [#527](https://github.com/stripe/stripe-go/pull/527) Add `MaidenName`, `PersonalIDNumber`, `PersonalIDNumberProvided` fields to `Owner` struct diff --git a/VERSION b/VERSION index fffd516e57..b07baebb04 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -29.3.0 +29.3.1 diff --git a/stripe.go b/stripe.go index 53746ab439..3e1a5699a3 100644 --- a/stripe.go +++ b/stripe.go @@ -29,7 +29,7 @@ const ( const apiversion = "2018-02-06" // clientversion is the binding version -const clientversion = "29.3.0" +const clientversion = "29.3.1" // 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