Skip to content

Commit a4a54b5

Browse files
release: 9.1.2
1 parent 06e8759 commit a4a54b5

7 files changed

Lines changed: 17 additions & 6 deletions

File tree

.release-please-manifest.json

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

CHANGELOG.md

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

3+
## 9.1.2 (2026-02-26)
4+
5+
Full Changelog: [v9.1.1...v9.1.2](https://github.com/Finch-API/finch-api-node/compare/v9.1.1...v9.1.2)
6+
7+
### Chores
8+
9+
* **internal:** fix MCP Dockerfiles so they can be built without buildkit ([4e01aa5](https://github.com/Finch-API/finch-api-node/commit/4e01aa5e3880153452e6d363e58a4f0a57a0ad03))
10+
* **internal:** fix MCP Dockerfiles so they can be built without buildkit ([809edff](https://github.com/Finch-API/finch-api-node/commit/809edff852053531b6d1540764c6e4cd924a441f))
11+
* **internal:** make MCP code execution location configurable via a flag ([a899886](https://github.com/Finch-API/finch-api-node/commit/a89988664c5f00d6aac1dc0d417c43ef05d1fc09))
12+
* **internal:** move stringifyQuery implementation to internal function ([06e8759](https://github.com/Finch-API/finch-api-node/commit/06e87594913bdfda7e6a2cf6f980886441544758))
13+
314
## 9.1.1 (2026-02-23)
415

516
Full Changelog: [v9.1.0...v9.1.1](https://github.com/Finch-API/finch-api-node/compare/v9.1.0...v9.1.1)

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": "9.1.1",
3+
"version": "9.1.2",
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/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": "@tryfinch/finch-api-mcp",
4-
"version": "9.1.1",
4+
"version": "9.1.2",
55
"description": "The official MCP Server for the Finch API",
66
"author": {
77
"name": "Finch",

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": "9.1.1",
3+
"version": "9.1.2",
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
@@ -21,7 +21,7 @@ export const newMcpServer = async (stainlessApiKey: string | undefined) =>
2121
new McpServer(
2222
{
2323
name: 'tryfinch_finch_api_api',
24-
version: '9.1.1',
24+
version: '9.1.2',
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 = '9.1.1'; // x-release-please-version
1+
export const VERSION = '9.1.2'; // x-release-please-version

0 commit comments

Comments
 (0)