diff --git a/CHANGELOG.md b/CHANGELOG.md index 42459f3fc8..35c110b9c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 17.2.0-beta.1 - 2024-10-03 +* [#2200](https://github.com/stripe/stripe-node/pull/2200) Updates beta branch with changes in master + * Add support for `reporting_chart` on `AccountSessionCreateParams.components` + * Remove support for `from_schedule` on `Quote.subscription_data` + * Add support for `allow_redisplay` on `Terminal.ReaderCollectPaymentMethodParams.collect_config` + ## 17.0.0 - 2024-10-01 * [#2192](https://github.com/stripe/stripe-node/pull/2192) Support for APIs in the new API version 2024-09-30.acacia diff --git a/VERSION b/VERSION index 493cc95a8c..86f87dab85 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -16.13.0-beta.1 +17.2.0-beta.1 diff --git a/package.json b/package.json index 08caebbebb..ede9071b10 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "stripe", - "version": "16.13.0-beta.1", + "version": "17.2.0-beta.1", "description": "Stripe API wrapper", "keywords": [ "stripe", diff --git a/src/stripe.core.ts b/src/stripe.core.ts index 9aadd26a4e..5d0afc9c99 100644 --- a/src/stripe.core.ts +++ b/src/stripe.core.ts @@ -59,7 +59,7 @@ export function createStripe( platformFunctions: PlatformFunctions, requestSender: RequestSenderFactory = defaultRequestSenderFactory ): typeof Stripe { - Stripe.PACKAGE_VERSION = '16.13.0-beta.1'; + Stripe.PACKAGE_VERSION = '17.2.0-beta.1'; Stripe.USER_AGENT = { bindings_version: Stripe.PACKAGE_VERSION, lang: 'node',