Skip to content

Commit b143b33

Browse files
release: 0.22.1
1 parent 37de3db commit b143b33

7 files changed

Lines changed: 25 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-
".": "0.22.0"
2+
".": "0.22.1"
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+
## 0.22.1 (2026-03-28)
4+
5+
Full Changelog: [v0.22.0...v0.22.1](https://github.com/isaacus-dev/isaacus-typescript/compare/v0.22.0...v0.22.1)
6+
7+
### Chores
8+
9+
* **ci:** escape input path in publish-npm workflow ([37de3db](https://github.com/isaacus-dev/isaacus-typescript/commit/37de3db4c34147f751a6fa8ae60f8dcc9ad477b7))
10+
* **ci:** skip lint on metadata-only changes ([03c9e5f](https://github.com/isaacus-dev/isaacus-typescript/commit/03c9e5fc53ddd4c08aa66fd3b93afa067d21e185))
11+
* **internal:** bump @modelcontextprotocol/sdk, @hono/node-server, and minimatch ([2721387](https://github.com/isaacus-dev/isaacus-typescript/commit/27213877706a51093af4eb15e3ed1eeb71af9e97))
12+
* **internal:** codegen related update ([dc8c9d9](https://github.com/isaacus-dev/isaacus-typescript/commit/dc8c9d98bbeb42dac7bd9b8166a59097031759e6))
13+
* **internal:** fix MCP server TS errors that occur with required client options ([c834dba](https://github.com/isaacus-dev/isaacus-typescript/commit/c834dba3466004f1385dabbea908480217988d2b))
14+
* **internal:** make generated MCP servers compatible with Cloudflare worker environments ([6e1fbb2](https://github.com/isaacus-dev/isaacus-typescript/commit/6e1fbb2ceef03158f8a1b4be24bb30608069faad))
15+
* **internal:** support custom-instructions-path flag in MCP servers ([9c72691](https://github.com/isaacus-dev/isaacus-typescript/commit/9c726913496aa66da7acac78b5501f95946dcbb2))
16+
* **internal:** support local docs search in MCP servers ([0f9290d](https://github.com/isaacus-dev/isaacus-typescript/commit/0f9290dac91e2e7c42218e660fb267db751ee19f))
17+
* **internal:** support x-stainless-mcp-client-envs header in MCP servers ([274f5c2](https://github.com/isaacus-dev/isaacus-typescript/commit/274f5c2620d69c0d97e5933d7b0804b3583570f8))
18+
* **internal:** support x-stainless-mcp-client-permissions headers in MCP servers ([aba6116](https://github.com/isaacus-dev/isaacus-typescript/commit/aba6116403bede7f968a37e080b8e6ed52893d51))
19+
* **internal:** tweak CI branches ([b97f70d](https://github.com/isaacus-dev/isaacus-typescript/commit/b97f70db25ccb1a838a92751ae1384d4220e2ac8))
20+
* **internal:** update gitignore ([971e5bd](https://github.com/isaacus-dev/isaacus-typescript/commit/971e5bd2076c311e7a90b346f9ea9dca013f2760))
21+
322
## 0.22.0 (2026-03-11)
423

524
Full Changelog: [v0.21.0...v0.22.0](https://github.com/isaacus-dev/isaacus-typescript/compare/v0.21.0...v0.22.0)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "isaacus",
3-
"version": "0.22.0",
3+
"version": "0.22.1",
44
"description": "The official TypeScript library for the Isaacus API",
55
"author": "Isaacus <support@isaacus.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": "isaacus-mcp",
4-
"version": "0.22.0",
4+
"version": "0.22.1",
55
"description": "The official MCP Server for the Isaacus API",
66
"author": {
77
"name": "Isaacus",

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": "isaacus-mcp",
3-
"version": "0.22.0",
3+
"version": "0.22.1",
44
"description": "The official MCP Server for the Isaacus API",
55
"author": "Isaacus <support@isaacus.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
@@ -28,7 +28,7 @@ export const newMcpServer = async ({
2828
new McpServer(
2929
{
3030
name: 'isaacus_api',
31-
version: '0.22.0',
31+
version: '0.22.1',
3232
},
3333
{
3434
instructions: await getInstructions({ stainlessApiKey, customInstructionsPath }),

src/version.ts

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

0 commit comments

Comments
 (0)