diff --git a/CHANGELOG.md b/CHANGELOG.md index ef2a8f57f9..732d69c0c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## 14.22.0-beta.1 - 2024-03-14 +* [#2036](https://github.com/stripe/stripe-node/pull/2036) Update generated code for beta + * Add support for new resources `Billing.MeterEventAdjustment`, `Billing.MeterEvent`, and `Billing.Meter` + * Add support for `create`, `deactivate`, `list`, `reactivate`, `retrieve`, and `update` methods on resource `Meter` + * Add support for `create` method on resources `MeterEventAdjustment` and `MeterEvent` + * Add support for `create` test helper method on resource `ConfirmationToken` + * Add support for `add_lines`, `remove_lines`, and `update_lines` methods on resource `Invoice` + * Add support for `multibanco` payment method throughout the API. + * Add support for `second_line` on `Issuing.PhysicalBundle.features` + * Add support for `multibanco_display_details` on `PaymentIntent.next_action` + * Add support for `meter` on `PlanCreateParams`, `Plan`, `Price.recurring`, `PriceCreateParams.recurring`, and `PriceListParams.recurring` + ## 14.21.0 - 2024-03-14 * [#2035](https://github.com/stripe/stripe-node/pull/2035) Update generated code * Add support for new resources `Issuing.PersonalizationDesign` and `Issuing.PhysicalBundle` diff --git a/VERSION b/VERSION index a0900dfee4..604b1b1eca 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -14.21.0-beta.1 +14.22.0-beta.1 diff --git a/package.json b/package.json index 0141843c7c..ac93d5d51c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "stripe", - "version": "14.21.0-beta.1", + "version": "14.22.0-beta.1", "description": "Stripe API wrapper", "keywords": [ "stripe", diff --git a/src/stripe.core.ts b/src/stripe.core.ts index be2a1938a2..f148ec5705 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 = '14.21.0-beta.1'; + Stripe.PACKAGE_VERSION = '14.22.0-beta.1'; Stripe.USER_AGENT = { bindings_version: Stripe.PACKAGE_VERSION, lang: 'node',