From fbf590ac024800794e5b4c7fe28eb1456c76d356 Mon Sep 17 00:00:00 2001 From: Brandur Date: Wed, 13 Jun 2018 16:22:32 -0700 Subject: [PATCH] Bump version to 34.1.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 c8efe13517..809788600f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 34.1.0 - 2018-06-13 +* [#586](https://github.com/stripe/stripe-go/pull/586) Add `AmountPaid`, `AmountRemaining`, `BillingReason` (including new `InvoiceBillingReason` and constants), and `SubscriptionProrationDate` to `Invoice` + ## 34.0.0 - 2018-06-12 * [#585](https://github.com/stripe/stripe-go/pull/585) Remove `File` in favor of `FileUpload`, and consolidating both classes which were already nearly identical except `MIMEType` has been replaced by `Type` (this is technically a breaking change, but quite a small one) diff --git a/VERSION b/VERSION index 9fe67f8646..cf24dcae00 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -34.0.0 +34.1.0 diff --git a/stripe.go b/stripe.go index b081c64bc6..28c9e521a9 100644 --- a/stripe.go +++ b/stripe.go @@ -30,7 +30,7 @@ const ( const apiversion = "2018-02-06" // clientversion is the binding version -const clientversion = "34.0.0" +const clientversion = "34.1.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