diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ac687bfe5..5caa38f433 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## 72.61.0 - 2021-08-19 +* [#1328](https://github.com/stripe/stripe-go/pull/1328) API Updates + * Add support for new TaxId type: `au_arn` + * Add support for `InteracPresent` on `ChargePaymentMethodDetails` + * Add support for `SepaCreditTransfer` on `ChargePaymentMethodDetails` + * Codegen related changes: + * Moved `ShippingDetails` into `address.go` + * Add support for `Object` and `Order` to `Charge` + * Renamed `ReviewReasonType` enum to `ReviewReason` but added a type alias to preserve backwards compatibility +* [#1323](https://github.com/stripe/stripe-go/pull/1323) codegen: api.go + ## 72.60.0 - 2021-08-11 * [#1325](https://github.com/stripe/stripe-go/pull/1325) API Updates * Add support for `locale` on ` BillingPortalSessionParams` and ` BillingPortalSession` diff --git a/VERSION b/VERSION index c7c4f6e9ca..97930b3ae5 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -72.60.0 +72.61.0 diff --git a/stripe.go b/stripe.go index abfd3bb8b7..0dc70c4745 100644 --- a/stripe.go +++ b/stripe.go @@ -1203,7 +1203,7 @@ func StringSlice(v []string) []*string { // // clientversion is the binding version -const clientversion = "72.60.0" +const clientversion = "72.61.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