diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e1ff1cb51..3137c06300 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,8 @@ # Changelog +## 17.2.0 - 2024-10-09 +* [#2201](https://github.com/stripe/stripe-node/pull/2201) Add fetchRelatedObject to V2 Events if needed + * `fetchRelatedObject` is added to events retrieved using `stripe.v2.core.events` and can be used to easily fetch the Stripe object related to a retrieved event + ## 17.1.0 - 2024-10-03 * [#2199](https://github.com/stripe/stripe-node/pull/2199) Update generated code * Remove the support for resource `Margin` that was accidentally made public in the last release diff --git a/VERSION b/VERSION index d9e58927a6..290a3f36db 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -17.1.0 +17.2.0 diff --git a/package.json b/package.json index 7671d3cbc6..3757676826 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "stripe", - "version": "17.1.0", + "version": "17.2.0", "description": "Stripe API wrapper", "keywords": [ "stripe", diff --git a/src/stripe.core.ts b/src/stripe.core.ts index 077443504e..03da005082 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 = '17.1.0'; + Stripe.PACKAGE_VERSION = '17.2.0'; Stripe.USER_AGENT = { bindings_version: Stripe.PACKAGE_VERSION, lang: 'node',