Skip to content

Commit e5467ff

Browse files
release: 2.21.0
1 parent 5a66e8b commit e5467ff

File tree

7 files changed

+30
-6
lines changed

7 files changed

+30
-6
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "2.20.0"
2+
".": "2.21.0"
33
}

CHANGELOG.md

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

3+
## 2.21.0 (2026-02-27)
4+
5+
Full Changelog: [v2.20.0...v2.21.0](https://github.com/dodopayments/dodopayments-typescript/compare/v2.20.0...v2.21.0)
6+
7+
### Features
8+
9+
* **mcp:** add an option to disable code tool ([5a66e8b](https://github.com/dodopayments/dodopayments-typescript/commit/5a66e8b904380cc9a2233e19fcc51da2eb3303d6))
10+
11+
12+
### Bug Fixes
13+
14+
* **docs/contributing:** correct pnpm link command ([3a8d217](https://github.com/dodopayments/dodopayments-typescript/commit/3a8d217537354e0e4c08c10e57b5aa4093ab8bbe))
15+
16+
17+
### Chores
18+
19+
* **internal:** codegen related update ([fe8a89c](https://github.com/dodopayments/dodopayments-typescript/commit/fe8a89c40c9841bac1735faa6b692618d270a7f6))
20+
* **internal:** fix MCP Dockerfiles so they can be built without buildkit ([00068c1](https://github.com/dodopayments/dodopayments-typescript/commit/00068c102bcef5be14e1ee4a16d40c9032ad872e))
21+
* **internal:** fix MCP Dockerfiles so they can be built without buildkit ([b4fa32c](https://github.com/dodopayments/dodopayments-typescript/commit/b4fa32cfc1b41d4eed597b6659e986a658235937))
22+
* **internal:** make MCP code execution location configurable via a flag ([76c9ed6](https://github.com/dodopayments/dodopayments-typescript/commit/76c9ed60830731a9caa8b1acd340b56f35c87fd2))
23+
* **internal:** move stringifyQuery implementation to internal function ([f28b0b4](https://github.com/dodopayments/dodopayments-typescript/commit/f28b0b4bea6475a86671b61bf7585365cec06576))
24+
* **internal:** update agents version ([fbdbce3](https://github.com/dodopayments/dodopayments-typescript/commit/fbdbce302cc1fc2e90d478d64a067a3384837661))
25+
* **internal:** upgrade @modelcontextprotocol/sdk and hono ([f4b2d17](https://github.com/dodopayments/dodopayments-typescript/commit/f4b2d17fb47145cd7e185991cda5891114cafafe))
26+
327
## 2.20.0 (2026-02-20)
428

529
Full Changelog: [v2.19.1...v2.20.0](https://github.com/dodopayments/dodopayments-typescript/compare/v2.19.1...v2.20.0)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dodopayments",
3-
"version": "2.20.0",
3+
"version": "2.21.0",
44
"description": "The official TypeScript library for the Dodo Payments API",
55
"author": "Dodo Payments <support@dodopayments.com>",
66
"types": "dist/index.d.ts",

packages/mcp-server/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"dxt_version": "0.2",
33
"name": "dodopayments-mcp",
4-
"version": "2.20.0",
4+
"version": "2.21.0",
55
"description": "The official MCP Server for the Dodo Payments API",
66
"author": {
77
"name": "Dodo Payments",

packages/mcp-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dodopayments-mcp",
3-
"version": "2.20.0",
3+
"version": "2.21.0",
44
"description": "The official MCP Server for the Dodo Payments API",
55
"author": "Dodo Payments <support@dodopayments.com>",
66
"types": "dist/index.d.ts",

packages/mcp-server/src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export const newMcpServer = async (stainlessApiKey: string | undefined) =>
2121
new McpServer(
2222
{
2323
name: 'dodopayments_api',
24-
version: '2.20.0',
24+
version: '2.21.0',
2525
},
2626
{
2727
instructions: await getInstructions(stainlessApiKey),

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '2.20.0'; // x-release-please-version
1+
export const VERSION = '2.21.0'; // x-release-please-version

0 commit comments

Comments
 (0)