diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c1dcdca8f..a6438b195c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 60.5.0 - 2019-04-16 +* [#740](https://github.com/stripe/stripe-go/pull/740) Add support for the Checkout `Session` resource and APIs +* [#832](https://github.com/stripe/stripe-go/pull/832) Add support for `version` and `succeeded` properties in the `payment_method_details[card][three_d_secure]` hash for `Charge`. +* [#835](https://github.com/stripe/stripe-go/pull/835) Add support for passing `payment_method` on `Customer` creation + ## 60.4.0 - 2019-04-15 * [#833](https://github.com/stripe/stripe-go/pull/833) Add more context when failing to unmarshal JSON diff --git a/README.md b/README.md index ca7edc313e..c08788e2c0 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.4.0 + github.com/stripe/stripe-go v60.5.0 ) ``` diff --git a/VERSION b/VERSION index 750b6e6eb5..8ce768edee 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -60.4.0 +60.5.0 diff --git a/stripe.go b/stripe.go index 085fc34c8d..314f5b80da 100644 --- a/stripe.go +++ b/stripe.go @@ -823,7 +823,7 @@ func StringValue(v *string) string { const apiURL = "https://api.stripe.com" // clientversion is the binding version -const clientversion = "60.4.0" +const clientversion = "60.5.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