diff --git a/CHANGELOG.md b/CHANGELOG.md index 25e71c9380..0402421ea1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 11.17.0 - 2023-03-30 +* [#1734](https://github.com/stripe/stripe-node/pull/1734) Update generated code + * Remove support for `create` method on resource `Tax.Transaction` + * This is not a breaking change, as this method was deprecated before the Tax Transactions API was released in favor of the `createFromCalculation` method. + * Add support for `export_license_id` and `export_purpose_code` on `Account.company`, `AccountCreateParams.company`, `AccountUpdateParams.company`, and `TokenCreateParams.account.company` + * Remove support for value `deleted` from enum `Invoice.status` + * This is not a breaking change, as `deleted` was never returned or accepted as input. + * Add support for `amount_tip` on `TerminalReaderPresentPaymentMethodParams.testHelpers` + ## 11.16.0 - 2023-03-23 * [#1730](https://github.com/stripe/stripe-node/pull/1730) Update generated code * Add support for new resources `Tax.CalculationLineItem`, `Tax.Calculation`, `Tax.TransactionLineItem`, and `Tax.Transaction` diff --git a/VERSION b/VERSION index 61894ec863..6f51726ce2 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -11.16.0 +11.17.0 diff --git a/package.json b/package.json index 2eacdba6e7..165d417416 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "stripe", - "version": "11.16.0", + "version": "11.17.0", "description": "Stripe API wrapper", "keywords": [ "stripe", diff --git a/src/stripe.core.ts b/src/stripe.core.ts index 7ac701f496..5ba8f324a8 100644 --- a/src/stripe.core.ts +++ b/src/stripe.core.ts @@ -48,7 +48,7 @@ export function createStripe( platformFunctions: PlatformFunctions, requestSender: RequestSenderFactory = defaultRequestSenderFactory ): typeof Stripe { - Stripe.PACKAGE_VERSION = '11.16.0'; + Stripe.PACKAGE_VERSION = '11.17.0'; Stripe.USER_AGENT = { bindings_version: Stripe.PACKAGE_VERSION, lang: 'node',