Skip to content

Commit 559c6b8

Browse files
release: 7.0.0
1 parent bcd99cd commit 559c6b8

File tree

6 files changed

+22
-5
lines changed

6 files changed

+22
-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: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
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 ([4019554](https://github.com/Finch-API/finch-api-node/commit/4019554b8516d0acb5268e3c869957d951d57da9))
10+
* **api:** move node to typescript generator ([e222d89](https://github.com/Finch-API/finch-api-node/commit/e222d89c352d2d60f07fa979c3fb972a11a9312f))
11+
* **api:** update automated code reviewer selection ([03683d9](https://github.com/Finch-API/finch-api-node/commit/03683d9fddf9a550de74a0d49de9bbbb5780f4a6))
12+
* **mcp:** enable optional code execution tool on http mcp servers ([bcd99cd](https://github.com/Finch-API/finch-api-node/commit/bcd99cdc66dc0c78b506258eb24757212f58ac6b))
13+
14+
15+
### Chores
16+
17+
* mcp code tool explicit error message when missing a run function ([22f41db](https://github.com/Finch-API/finch-api-node/commit/22f41db5aaee9f62acfa0e57d1325095fea8dfdb))
18+
* sync repo ([9c0e1ba](https://github.com/Finch-API/finch-api-node/commit/9c0e1bac5a6ce91e4cc5148fbe88bc3b9e1fb72e))
19+
320
## 6.38.0 (2025-10-27)
421

522
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)