Skip to content

Commit bcd6e5e

Browse files
release: 0.10.0
1 parent d2bf531 commit bcd6e5e

File tree

6 files changed

+33
-5
lines changed

6 files changed

+33
-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-
".": "0.9.0"
2+
".": "0.10.0"
33
}

CHANGELOG.md

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

3+
## 0.10.0 (2025-05-31)
4+
5+
Full Changelog: [v0.9.0...v0.10.0](https://github.com/isaacus-dev/isaacus-typescript/compare/v0.9.0...v0.10.0)
6+
7+
### Features
8+
9+
* **mcp:** include http information in tools ([114738a](https://github.com/isaacus-dev/isaacus-typescript/commit/114738ab45277fd2ac0c0eb26af526d8a51879df))
10+
11+
12+
### Bug Fixes
13+
14+
* compat with more runtimes ([e7b9a29](https://github.com/isaacus-dev/isaacus-typescript/commit/e7b9a294e97a919cc12bf8f39c8de9d91ae43c76))
15+
* **mcp:** explicitly include zod and zod-to-json-schema in package.json ([9b8a13c](https://github.com/isaacus-dev/isaacus-typescript/commit/9b8a13c9cafb7b9590401f5d1b888997b9429124))
16+
* **mcp:** fix cursor schema transformation issue with recursive references ([d0f747b](https://github.com/isaacus-dev/isaacus-typescript/commit/d0f747bfd026e1a69cc9e9ed5b0396b16a7d55e8))
17+
* **mcp:** include description in dynamic tool search ([0e535ea](https://github.com/isaacus-dev/isaacus-typescript/commit/0e535eaec29b502e1067d238623d05c06d22d226))
18+
19+
20+
### Chores
21+
22+
* **deps:** bump eslint-plugin-prettier ([d2bf531](https://github.com/isaacus-dev/isaacus-typescript/commit/d2bf5319cf2a6edfb25a7c56241f1e4efb3f641e))
23+
* **docs:** grammar improvements ([27ece95](https://github.com/isaacus-dev/isaacus-typescript/commit/27ece95b02af61a7a0c24e7acb0b68142e504b1c))
24+
* improve publish-npm script --latest tag logic ([e84f18e](https://github.com/isaacus-dev/isaacus-typescript/commit/e84f18e80a28898c9880290c78e7b1fbbe260bf7))
25+
* **internal:** codegen related update ([5dd627d](https://github.com/isaacus-dev/isaacus-typescript/commit/5dd627dfc72d274077bdedbd67f0ae15f7dcb86f))
26+
* **internal:** codegen related update ([508b4e2](https://github.com/isaacus-dev/isaacus-typescript/commit/508b4e26db593f0adb0e9c68ba0fcf53b99ec4e8))
27+
* **mcp:** remove duplicate assignment ([a9a5105](https://github.com/isaacus-dev/isaacus-typescript/commit/a9a51059795e99f45dc5aea920b3edf4a9349dbf))
28+
* **package:** remove engines ([fef8941](https://github.com/isaacus-dev/isaacus-typescript/commit/fef894183b0faaf70d61c5e5fbaa52f917bff672))
29+
* **tests:** use node 22 for CI tests ([81831b6](https://github.com/isaacus-dev/isaacus-typescript/commit/81831b67684f9671baec64156495ce03a0980185))
30+
331
## 0.9.0 (2025-05-10)
432

533
Full Changelog: [v0.8.0...v0.9.0](https://github.com/isaacus-dev/isaacus-typescript/compare/v0.8.0...v0.9.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.9.0",
3+
"version": "0.10.0",
44
"description": "The official TypeScript library for the Isaacus API",
55
"author": "Isaacus <[email protected]>",
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": "isaacus-mcp",
3-
"version": "0.9.0",
3+
"version": "0.10.0",
44
"description": "The official MCP Server for the Isaacus API",
55
"author": "Isaacus <[email protected]>",
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
@@ -19,7 +19,7 @@ export { endpoints } from './tools';
1919
export const server = new McpServer(
2020
{
2121
name: 'isaacus_api',
22-
version: '0.9.0',
22+
version: '0.10.0',
2323
},
2424
{
2525
capabilities: {

src/version.ts

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

0 commit comments

Comments
 (0)