From 4cd2b212fba2c108c4d8ab4e9e914187774a5e0d Mon Sep 17 00:00:00 2001 From: Remi Jannel Date: Wed, 20 May 2020 19:52:43 -0700 Subject: [PATCH] Bump version to 71.13.0 --- CHANGELOG.md | 7 +++++++ VERSION | 2 +- stripe.go | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3bcb792f61..94127b4e18 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 71.13.0 - 2020-05-20 +* [#1101](https://github.com/stripe/stripe-go/pull/1101) Multiple API Changes + * Add `BalanceTransactionTypeAnticipationRepayment` as a `Type` on `BalanceTransaction` + * Add `PaymentMethodTypeInteracPresent` as a `Type` on `PaymentMethod` + * Add `ChargePaymentMethodDetailsInteracPresent` on `Charge` + * Add `TransferData ` on `SubscriptionSchedule` + ## 71.12.0 - 2020-05-18 * [#1099](https://github.com/stripe/stripe-go/pull/1099) Multiple API changes * Add `issuing_dispute` as a `type` on `BalanceTransaction` diff --git a/VERSION b/VERSION index f107e5689a..f5fe02df39 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -71.12.0 +71.13.0 diff --git a/stripe.go b/stripe.go index 6509cafe73..7f48ace7c4 100644 --- a/stripe.go +++ b/stripe.go @@ -992,7 +992,7 @@ func StringSlice(v []string) []*string { const apiURL = "https://api.stripe.com" // clientversion is the binding version -const clientversion = "71.12.0" +const clientversion = "71.13.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