diff --git a/CHANGELOG.md b/CHANGELOG.md index a57cd7c5ae..ad829ffd32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 60.11.0 - 2019-05-02 +* [#841](https://github.com/stripe/stripe-go/pull/841) Add support for the `Customer` filter on `PaymentIntentListParams` +* [#842](https://github.com/stripe/stripe-go/pull/842) Add support for replacing another Issuing `Card` on creation + ## 60.10.0 - 2019-04-30 * [#839](https://github.com/stripe/stripe-go/pull/839) Add support for ACSS Debit in `PaymentMethodDetails` on `Charge` * [#840](https://github.com/stripe/stripe-go/pull/840) Add support for `FileLinkData` on `File` creation diff --git a/README.md b/README.md index 1d6b01ecea..556eca220c 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 v60.10.0 + github.com/stripe/stripe-go v60.11.0 ) ``` diff --git a/VERSION b/VERSION index 12859d2790..bf9d497cd0 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -60.10.0 +60.11.0 diff --git a/stripe.go b/stripe.go index 80c60c98b6..3df20deff3 100644 --- a/stripe.go +++ b/stripe.go @@ -859,7 +859,7 @@ func StringSlice(v []string) []*string { const apiURL = "https://api.stripe.com" // clientversion is the binding version -const clientversion = "60.10.0" +const clientversion = "60.11.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