diff --git a/CHANGELOG.md b/CHANGELOG.md index 338723af76..7605ca7817 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 72.106.0 - 2022-05-05 +* [#1457](https://github.com/stripe/stripe-go/pull/1457) API Updates + * Add support for `DefaultPriceData` on `ProductParams` + * Add support for `DefaultPrice` on `ProductParams` and `Product` + * Add support for `InstructionsEmail` on `RefundParams` and `Refund` + + ## 72.105.0 - 2022-05-05 * [#1455](https://github.com/stripe/stripe-go/pull/1455) API Updates * Add support for new resources `FinancialConnections.AccountOwner`, `FinancialConnections.AccountOwnership`, `FinancialConnections.Account`, and `FinancialConnections.Session` diff --git a/VERSION b/VERSION index 35451a3bfd..7f7d5addb5 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -72.105.0 +72.106.0 diff --git a/stripe.go b/stripe.go index 4b106717e3..0db1dc9d25 100644 --- a/stripe.go +++ b/stripe.go @@ -1203,7 +1203,7 @@ func StringSlice(v []string) []*string { // // clientversion is the binding version -const clientversion = "72.105.0" +const clientversion = "72.106.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