diff --git a/CHANGELOG.md b/CHANGELOG.md index bbb9b8ed5f..d05930087a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 67.2.0 - 2019-11-06 +* [#985](https://github.com/stripe/stripe-go/pull/985) Multiple API changes + * Add `Disputed` to `Charge` + * Add `PaymentIntent` to `Refund` and `Dispute` + * Add `Charge` to `DisputeListParams` + * Add `PaymentIntent` to `RefundListParams` and `RefundParams` + ## 67.1.0 - 2019-11-06 * [#986](https://github.com/stripe/stripe-go/pull/986) Add support for iDEAL and SEPA debit on `PaymentMethod` diff --git a/README.md b/README.md index 11dad9c9cd..3ca666635a 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 v67.1.0 + github.com/stripe/stripe-go v67.2.0 ) ``` diff --git a/VERSION b/VERSION index 00d269b769..9e9090007d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -67.1.0 +67.2.0 diff --git a/stripe.go b/stripe.go index 463459f3cd..1a8ce528dd 100644 --- a/stripe.go +++ b/stripe.go @@ -950,7 +950,7 @@ func StringSlice(v []string) []*string { const apiURL = "https://api.stripe.com" // clientversion is the binding version -const clientversion = "67.1.0" +const clientversion = "67.2.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