diff --git a/CHANGELOG.md b/CHANGELOG.md index b9d294a698..8b381886c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 73.8.0 - 2022-09-09 +* [#1543](https://github.com/stripe/stripe-go/pull/1543) API Updates + * Add support for `RequireSignature` on `IssuingCardShippingParams` and `IssuingCardShipping` + ## 73.7.0 - 2022-09-06 * [#1542](https://github.com/stripe/stripe-go/pull/1542) API Updates * Add support for new value `terminal_reader_splashscreen` on enum `FilePurpose` diff --git a/VERSION b/VERSION index 574463d5ce..5658cf9b4f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -73.7.0 +73.8.0 diff --git a/stripe.go b/stripe.go index 047ca73ea0..6973c5ef9b 100644 --- a/stripe.go +++ b/stripe.go @@ -1198,7 +1198,7 @@ func StringSlice(v []string) []*string { // // clientversion is the binding version -const clientversion = "73.7.0" +const clientversion = "73.8.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