diff --git a/CHANGELOG.md b/CHANGELOG.md index 2492b0d251..9c89d81f37 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 15.8.0 - 2024-05-23 +* [#2092](https://github.com/stripe/stripe-node/pull/2092) Update generated code + * Add support for `external_account_collection` on `AccountSession.components.balances.features`, `AccountSession.components.payouts.features`, `AccountSessionCreateParams.components.balances.features`, and `AccountSessionCreateParams.components.payouts.features` + * Add support for new value `terminal_reader_invalid_location_for_payment` on enums `Invoice.last_finalization_error.code`, `PaymentIntent.last_payment_error.code`, `SetupAttempt.setup_error.code`, `SetupIntent.last_setup_error.code`, and `StripeError.code` + * Add support for `payment_method_remove` on `Checkout.Session.saved_payment_method_options` + ## 15.7.0 - 2024-05-16 * [#2088](https://github.com/stripe/stripe-node/pull/2088) Update generated code * Add support for `fee_source` on `ApplicationFee` diff --git a/VERSION b/VERSION index 3a3b507162..acabd5c129 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -15.7.0 +15.8.0 diff --git a/package.json b/package.json index 5be7c534a8..d493e0f661 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "stripe", - "version": "15.7.0", + "version": "15.8.0", "description": "Stripe API wrapper", "keywords": [ "stripe", diff --git a/src/stripe.core.ts b/src/stripe.core.ts index d13ec0dcb3..38d04aa544 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 = '15.7.0'; + Stripe.PACKAGE_VERSION = '15.8.0'; Stripe.USER_AGENT = { bindings_version: Stripe.PACKAGE_VERSION, lang: 'node',