Skip to content

Commit a4a0d3b

Browse files
release: 7.0.0
1 parent 267f2ed commit a4a0d3b

File tree

6 files changed

+24
-5
lines changed

6 files changed

+24
-5
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-
".": "6.38.0"
2+
".": "7.0.0"
33
}

CHANGELOG.md

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

3+
## 7.0.0 (2025-11-05)
4+
5+
Full Changelog: [v6.38.0...v7.0.0](https://github.com/Finch-API/finch-api-node/compare/v6.38.0...v7.0.0)
6+
7+
### Features
8+
9+
* **api:** api update ([c828e49](https://github.com/Finch-API/finch-api-node/commit/c828e49ea776ac4192b2e9d77cec53b2583b7bdb))
10+
* **api:** move node to typescript generator ([ede6f23](https://github.com/Finch-API/finch-api-node/commit/ede6f23a52beed033b7916398ec95ce114e163a3))
11+
* **api:** update automated code reviewer selection ([91c2be0](https://github.com/Finch-API/finch-api-node/commit/91c2be0f84ef6e6930a2789e900365df5e617a93))
12+
* **mcp:** enable optional code execution tool on http mcp servers ([96505be](https://github.com/Finch-API/finch-api-node/commit/96505be9153d994fa727d1e7ce6cf710c58d11e0))
13+
14+
15+
### Chores
16+
17+
* mcp code tool explicit error message when missing a run function ([57f9a41](https://github.com/Finch-API/finch-api-node/commit/57f9a41624043e3b2855dacef3e0e45aaa4503e0))
18+
* **mcp:** add friendlier MCP code tool errors on incorrect method invocations ([6d8a815](https://github.com/Finch-API/finch-api-node/commit/6d8a815e6ce13e1f88a46cdc7b13f97a0b236377))
19+
* **mcp:** add line numbers to code tool errors ([267f2ed](https://github.com/Finch-API/finch-api-node/commit/267f2edf6d33769a75de6dd03b17e304e82fd290))
20+
* sync repo ([4a6198f](https://github.com/Finch-API/finch-api-node/commit/4a6198fc65186f9b966f983cf67374375263cff1))
21+
322
## 6.38.0 (2025-10-27)
423

524
Full Changelog: [v6.37.0...v6.38.0](https://github.com/Finch-API/finch-api-node/compare/v6.37.0...v6.38.0)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tryfinch/finch-api",
3-
"version": "6.38.0",
3+
"version": "7.0.0",
44
"description": "The official TypeScript library for the Finch API",
55
"author": "Finch <founders@tryfinch.com>",
66
"types": "dist/index.d.ts",

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": "@tryfinch/finch-api-mcp",
3-
"version": "6.38.0",
3+
"version": "7.0.0",
44
"description": "The official MCP Server for the Finch API",
55
"author": "Finch <founders@tryfinch.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
@@ -34,7 +34,7 @@ export const newMcpServer = () =>
3434
new McpServer(
3535
{
3636
name: 'tryfinch_finch_api_api',
37-
version: '6.38.0',
37+
version: '7.0.0',
3838
},
3939
{ capabilities: { tools: {}, logging: {} } },
4040
);

src/version.ts

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

0 commit comments

Comments
 (0)