diff --git a/CHANGELOG.md b/CHANGELOG.md index 0cd14d6ad5..303c15caca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 62.1.1 - 2019-08-15 +* [#918](https://github.com/stripe/stripe-go/pull/918) Fix `RadarEarlyFraudWarnings` to use the proper API endpoint + ## 62.1.0 - 2019-08-15 * [#916](https://github.com/stripe/stripe-go/pull/916) * Add support for `PIN` on Issuing `Card` to reflect the status of a card's PIN diff --git a/README.md b/README.md index a160808d44..dce1f5bb3f 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 v62.1.0 + github.com/stripe/stripe-go v62.1.1 ) ``` diff --git a/VERSION b/VERSION index 58d83ee7ce..b846578789 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -62.1.0 +62.1.1 diff --git a/stripe.go b/stripe.go index 14d695bf4c..da541865c1 100644 --- a/stripe.go +++ b/stripe.go @@ -915,7 +915,7 @@ func StringSlice(v []string) []*string { const apiURL = "https://api.stripe.com" // clientversion is the binding version -const clientversion = "62.1.0" +const clientversion = "62.1.1" // 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