diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c0719f678..447bfde34d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 61.19.0 - 2019-07-22 +* [#902](https://github.com/stripe/stripe-go/pull/902) Add support for `StatementDescriptor` when capturing a `PaymentIntent` + ## 61.18.0 - 2019-07-19 * [#898](https://github.com/stripe/stripe-go/pull/898) Add `Customer` filter when listing `CreditNote` * [#899](https://github.com/stripe/stripe-go/pull/899) Add `OffSession` parameter when updating `SubscriptionItem` diff --git a/README.md b/README.md index 9879f3d6f0..aeb11a155f 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.18.0 + github.com/stripe/stripe-go v61.19.0 ) ``` diff --git a/VERSION b/VERSION index c90c70cf4a..858ac77072 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -61.18.0 +61.19.0 diff --git a/stripe.go b/stripe.go index 024a4c87a2..ebae3e6bb5 100644 --- a/stripe.go +++ b/stripe.go @@ -880,7 +880,7 @@ func StringSlice(v []string) []*string { const apiURL = "https://api.stripe.com" // clientversion is the binding version -const clientversion = "61.18.0" +const clientversion = "61.19.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