From ea878597d903b84d2e227071e7907057f949b714 Mon Sep 17 00:00:00 2001 From: Remi Jannel Date: Thu, 8 Aug 2019 13:16:21 -0700 Subject: [PATCH] Bump version to 61.26.0 --- CHANGELOG.md | 6 ++++++ README.md | 2 +- VERSION | 2 +- stripe.go | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 626b8c521a..326641e2b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 61.26.0 - 2019-08-08 +* [#911](https://github.com/stripe/stripe-go/pull/911) + * Add support for `PaymentMethodDetails.Card.Moto` on `Charge` + * Add support `StatementDescriptorSuffix` on `Charge` and `PaymentIntent` + * Add support `SubscriptionData.ApplicationFeePercent` on Checkout `Session` + ## 61.25.0 - 2019-07-30 * [#910](https://github.com/stripe/stripe-go/pull/910) Add `balancetransaction` package with a `Get` and `List` methods diff --git a/README.md b/README.md index f6fea90ad2..572df7c47c 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ suffix* in the path like so: module github.com/my/package require ( - github.com/stripe/stripe-go v61.25.0 + github.com/stripe/stripe-go v61.26.0 ) ``` diff --git a/VERSION b/VERSION index 10b735f8e2..191e349b75 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -61.25.0 +61.26.0 diff --git a/stripe.go b/stripe.go index d99bcedf38..ff4f0385ef 100644 --- a/stripe.go +++ b/stripe.go @@ -915,7 +915,7 @@ func StringSlice(v []string) []*string { const apiURL = "https://api.stripe.com" // clientversion is the binding version -const clientversion = "61.25.0" +const clientversion = "61.26.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