diff --git a/CHANGELOG.md b/CHANGELOG.md index 96880d2882..455a783fca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 72.46.0 - 2021-05-25 +* [#1285](https://github.com/stripe/stripe-go/pull/1285) API Updates + * Add support for Identity VerificationSession and VerificationReport APIs + ## 72.45.0 - 2021-05-06 * [#1280](https://github.com/stripe/stripe-go/pull/1280) API Updates * Added support for `reference` on `Charge.payment_method_details.afterpay_clearpay` diff --git a/VERSION b/VERSION index 987e57f315..85c6400dff 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -72.45.0 +72.46.0 diff --git a/stripe.go b/stripe.go index 6389aad73e..efa6e74190 100644 --- a/stripe.go +++ b/stripe.go @@ -1051,7 +1051,7 @@ func StringSlice(v []string) []*string { const apiURL = "https://api.stripe.com" // clientversion is the binding version -const clientversion = "72.45.0" +const clientversion = "72.46.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