diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b3e559974..cf4f9ecd3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 14.11.0 - 2024-01-04 +* [#1985](https://github.com/stripe/stripe-node/pull/1985) Update generated code + * Add support for `retrieve` method on resource `Tax.Registration` + * Change `AccountSession.components.payment_details.features`, `AccountSession.components.payment_details`, `AccountSession.components.payments.features`, `AccountSession.components.payments`, `AccountSession.components.payouts.features`, `AccountSession.components.payouts`, `PaymentLink.inactive_message`, and `PaymentLink.restrictions` to be required + * Change type of `SubscriptionSchedule.default_settings.invoice_settings` from `InvoiceSettingSubscriptionScheduleSetting | null` to `InvoiceSettingSubscriptionScheduleSetting` +* [#1987](https://github.com/stripe/stripe-node/pull/1987) Update docstrings to indicate removal of deprecated event types + ## 14.10.0 - 2023-12-22 * [#1979](https://github.com/stripe/stripe-node/pull/1979) Update generated code * Add support for `collection_method` on `Mandate.payment_method_details.us_bank_account` diff --git a/VERSION b/VERSION index 6242bb49da..bfbf3ff1f2 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -14.10.0 +14.11.0 diff --git a/package.json b/package.json index c1f0359071..b26b690aaf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "stripe", - "version": "14.10.0", + "version": "14.11.0", "description": "Stripe API wrapper", "keywords": [ "stripe", diff --git a/src/stripe.core.ts b/src/stripe.core.ts index 08238a5c26..6e34adff82 100644 --- a/src/stripe.core.ts +++ b/src/stripe.core.ts @@ -49,7 +49,7 @@ export function createStripe( platformFunctions: PlatformFunctions, requestSender: RequestSenderFactory = defaultRequestSenderFactory ): typeof Stripe { - Stripe.PACKAGE_VERSION = '14.10.0'; + Stripe.PACKAGE_VERSION = '14.11.0'; Stripe.USER_AGENT = { bindings_version: Stripe.PACKAGE_VERSION, lang: 'node',