diff --git a/CHANGELOG.md b/CHANGELOG.md index 05f72960ef..8046edbeca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 61.13.0 - 2019-07-05 +* [#888](https://github.com/stripe/stripe-go/pull/888) Add support for `SetupFutureUsage` on `PaymentIntent` update and confirm +* [#890](https://github.com/stripe/stripe-go/pull/890) Add support for `SetupFutureUsage` on Checkout `Session` + ## 61.12.0 - 2019-07-01 * [#887](https://github.com/stripe/stripe-go/pull/887) Allow `OffSession` to be a bool on `PaymentIntent` creation and confirmation diff --git a/README.md b/README.md index 48900ce728..5aeb99ef15 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.12.0 + github.com/stripe/stripe-go v61.13.0 ) ``` diff --git a/VERSION b/VERSION index ebf8155131..f361c631c5 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -61.12.0 +61.13.0 diff --git a/stripe.go b/stripe.go index 0b572ab123..00a8a618db 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.12.0" +const clientversion = "61.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