diff --git a/CHANGELOG.md b/CHANGELOG.md index dfe162b08c..68b5baca6a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 74.11.0 - 2023-03-09 +* [#1616](https://github.com/stripe/stripe-go/pull/1616) API Updates + * Add support for `CardIssuing` on `IssuingCardholderIndividualParams` + * Add support for new value `requirements.past_due` on enum `IssuingCardholderRequirementsDisabledReason` + * Add support for `CancellationDetails` on `SubscriptionCancelParams`, `SubscriptionParams`, and `Subscription` + + ## 74.10.0 - 2023-03-02 * [#1614](https://github.com/stripe/stripe-go/pull/1614) API Updates * Add support for `ReconciliationStatus` on `Payout` diff --git a/VERSION b/VERSION index 16bb848211..47d76d1c2f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -74.10.0 +74.11.0 diff --git a/stripe.go b/stripe.go index c6fc0194bb..d637d42af5 100644 --- a/stripe.go +++ b/stripe.go @@ -1198,7 +1198,7 @@ func StringSlice(v []string) []*string { // // clientversion is the binding version -const clientversion = "74.10.0" +const clientversion = "74.11.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