diff --git a/CHANGELOG.md b/CHANGELOG.md index fbc5f19ddf..7078edd729 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 15.5.0-beta.1 - 2024-04-25 +* [#2070](https://github.com/stripe/stripe-node/pull/2070) Update generated code for beta + * Add support for `payment_method_settings` on `AccountSessionCreateParams.components` + * Add support for `cancel_subscription_schedule` on `QuoteCreateParams.lines[]`, `QuoteLine`, and `QuoteUpdateParams.lines[]` + ## 15.4.0-beta.1 - 2024-04-18 * [#2065](https://github.com/stripe/stripe-node/pull/2065) Update generated code for beta * Add support for `capital_overview`, `tax_registrations`, and `tax_settings` on `AccountSessionCreateParams.components` diff --git a/VERSION b/VERSION index 8718fad322..13c32441db 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -15.4.0-beta.1 +15.5.0-beta.1 diff --git a/package.json b/package.json index 80fde06e92..edfaf3bf5c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "stripe", - "version": "15.4.0-beta.1", + "version": "15.5.0-beta.1", "description": "Stripe API wrapper", "keywords": [ "stripe", diff --git a/src/stripe.core.ts b/src/stripe.core.ts index 4be5df3dca..47e04d941e 100644 --- a/src/stripe.core.ts +++ b/src/stripe.core.ts @@ -55,7 +55,7 @@ export function createStripe( platformFunctions: PlatformFunctions, requestSender: RequestSenderFactory = defaultRequestSenderFactory ): typeof Stripe { - Stripe.PACKAGE_VERSION = '15.4.0-beta.1'; + Stripe.PACKAGE_VERSION = '15.5.0-beta.1'; Stripe.USER_AGENT = { bindings_version: Stripe.PACKAGE_VERSION, lang: 'node',