Skip to content

Commit f344db7

Browse files
Bump version to 21.1.0-beta.2
1 parent 8e7a2a1 commit f344db7

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## 21.1.0-beta.2 - 2026-03-26
4+
* [#2627](https://github.com/stripe/stripe-node/pull/2627) Fix export for Stripe.Decimal in CJS and ESM. Resolves [#2625](https://github.com/stripe/stripe-node/issues/2625)
5+
36
## 21.1.0-beta.1 - 2026-03-25
47

58
This release changes the pinned API version to `2026-03-25.preview`. It is built on top of SDK version 21.0.0 which contains breaking changes. Please review the [changelog for 21.0.0](https://github.com/stripe/stripe-node/blob/master/CHANGELOG.md#2100---2026-03-25) if upgrading from older SDK versions.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
21.1.0-beta.1
1+
21.1.0-beta.2

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "stripe",
3-
"version": "21.1.0-beta.1",
3+
"version": "21.1.0-beta.2",
44
"description": "Stripe API wrapper",
55
"keywords": [
66
"stripe",

src/stripe.core.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export function createStripe(
6363
platformFunctions: PlatformFunctions,
6464
requestSender: RequestSenderFactory = defaultRequestSenderFactory
6565
): typeof Stripe {
66-
Stripe.PACKAGE_VERSION = '21.1.0-beta.1';
66+
Stripe.PACKAGE_VERSION = '21.1.0-beta.2';
6767
Stripe.API_VERSION = ApiVersion;
6868
const aiAgent =
6969
typeof process !== 'undefined' && process.env

0 commit comments

Comments
 (0)