Skip to content

Commit 9f96676

Browse files
release: 0.9.1
1 parent 81831b6 commit 9f96676

File tree

6 files changed

+19
-5
lines changed

6 files changed

+19
-5
lines changed

.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.9.0"
2+
".": "0.9.1"
33
}

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## 0.9.1 (2025-05-13)
4+
5+
Full Changelog: [v0.9.0...v0.9.1](https://github.com/isaacus-dev/isaacus-typescript/compare/v0.9.0...v0.9.1)
6+
7+
### Bug Fixes
8+
9+
* **mcp:** explicitly include zod and zod-to-json-schema in package.json ([9b8a13c](https://github.com/isaacus-dev/isaacus-typescript/commit/9b8a13c9cafb7b9590401f5d1b888997b9429124))
10+
11+
12+
### Chores
13+
14+
* **internal:** codegen related update ([508b4e2](https://github.com/isaacus-dev/isaacus-typescript/commit/508b4e26db593f0adb0e9c68ba0fcf53b99ec4e8))
15+
* **tests:** use node 22 for CI tests ([81831b6](https://github.com/isaacus-dev/isaacus-typescript/commit/81831b67684f9671baec64156495ce03a0980185))
16+
317
## 0.9.0 (2025-05-10)
418

519
Full Changelog: [v0.8.0...v0.9.0](https://github.com/isaacus-dev/isaacus-typescript/compare/v0.8.0...v0.9.0)

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "isaacus",
3-
"version": "0.9.0",
3+
"version": "0.9.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/package.json

+1-1
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.9.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

+1-1
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.9.1',
2323
},
2424
{
2525
capabilities: {

src/version.ts

+1-1
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.9.1'; // x-release-please-version

0 commit comments

Comments
 (0)