Skip to content

Commit d4e4451

Browse files
release: 0.35.1
1 parent 9d6b23b commit d4e4451

7 files changed

Lines changed: 31 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.35.0"
2+
".": "0.35.1"
33
}

CHANGELOG.md

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

3+
## 0.35.1 (2026-03-25)
4+
5+
Full Changelog: [v0.35.0...v0.35.1](https://github.com/hyperspell/node-sdk/compare/v0.35.0...v0.35.1)
6+
7+
### Features
8+
9+
* **api:** api update ([a768bf6](https://github.com/hyperspell/node-sdk/commit/a768bf6fbd1eaa82a414535224da3f19f123907b))
10+
* **api:** api update ([c684933](https://github.com/hyperspell/node-sdk/commit/c684933f087a8e23948c932180ead79e01bec4b4))
11+
12+
13+
### Chores
14+
15+
* **ci:** skip lint on metadata-only changes ([07b1ee8](https://github.com/hyperspell/node-sdk/commit/07b1ee87033ed506b9ff3500ce9467eabf639dcf))
16+
* **internal:** fix MCP server TS errors that occur with required client options ([028a8ad](https://github.com/hyperspell/node-sdk/commit/028a8ad398b22454643dd4ddf8fec700fb6dfb5b))
17+
* **internal:** update gitignore ([4949619](https://github.com/hyperspell/node-sdk/commit/4949619e1a3fd9e7c6c30eab4603b72f94c476c8))
18+
* **tests:** bump steady to v0.19.4 ([60d723b](https://github.com/hyperspell/node-sdk/commit/60d723b2005ee840ec27fbe4be01b2d363cd2227))
19+
* **tests:** bump steady to v0.19.5 ([be42038](https://github.com/hyperspell/node-sdk/commit/be42038d3d1aa652e8552bba11cb1d31bcaa08a6))
20+
* **tests:** bump steady to v0.19.6 ([7241e1e](https://github.com/hyperspell/node-sdk/commit/7241e1e18f60733bd2101470a65387dc839c837a))
21+
* **tests:** bump steady to v0.19.7 ([9d6b23b](https://github.com/hyperspell/node-sdk/commit/9d6b23b6c5254f9651d129b0e3c9f3b4ec8bfcea))
22+
23+
24+
### Refactors
25+
26+
* **tests:** switch from prism to steady ([489061f](https://github.com/hyperspell/node-sdk/commit/489061f36a798209f7ea49566f0f47f5b8964f44))
27+
328
## 0.35.0 (2026-03-18)
429

530
Full Changelog: [v0.34.0...v0.35.0](https://github.com/hyperspell/node-sdk/compare/v0.34.0...v0.35.0)

package.json

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

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": "hyperspell-mcp",
3-
"version": "0.35.0",
3+
"version": "0.35.1",
44
"description": "The official MCP Server for the Hyperspell API",
55
"author": "Hyperspell <hello@hyperspell.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: 'hyperspell_api',
24-
version: '0.35.0',
24+
version: '0.35.1',
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 = '0.35.0'; // x-release-please-version
1+
export const VERSION = '0.35.1'; // x-release-please-version

0 commit comments

Comments
 (0)