Skip to content

Commit 170f14a

Browse files
release: 0.5.0
1 parent f9ffa75 commit 170f14a

File tree

6 files changed

+25
-5
lines changed

6 files changed

+25
-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.4.0"
2+
".": "0.5.0"
33
}

CHANGELOG.md

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

3+
## 0.5.0 (2025-12-06)
4+
5+
Full Changelog: [v0.4.0...v0.5.0](https://github.com/et0and/schools-sdk-typescript/compare/v0.4.0...v0.5.0)
6+
7+
### Features
8+
9+
* **mcp:** add typescript check to code execution tool ([163a4b9](https://github.com/et0and/schools-sdk-typescript/commit/163a4b9443450be09cc6017ec6d87acfc3bb2beb))
10+
* **mcp:** handle code mode calls in the Stainless API ([c330db7](https://github.com/et0and/schools-sdk-typescript/commit/c330db7642103c295e5131f51f33d2805c7e454c))
11+
12+
13+
### Bug Fixes
14+
15+
* **mcp:** return correct lines on typescript errors ([011b89f](https://github.com/et0and/schools-sdk-typescript/commit/011b89f332e9c99c59c3f82359d5f392fa45b757))
16+
17+
18+
### Chores
19+
20+
* **internal:** codegen related update ([f9ffa75](https://github.com/et0and/schools-sdk-typescript/commit/f9ffa75af156a50c7686057de3ee832872d6b4bb))
21+
* use latest @modelcontextprotocol/sdk ([7f90ba8](https://github.com/et0and/schools-sdk-typescript/commit/7f90ba84663f3c851a49932e4fc654bbe7c6e80a))
22+
323
## 0.4.0 (2025-12-03)
424

525
Full Changelog: [v0.3.0...v0.4.0](https://github.com/et0and/schools-sdk-typescript/compare/v0.3.0...v0.4.0)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "schools-sdk",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"description": "The official TypeScript library for the Schools API",
55
"author": "Schools <[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": "schools-sdk-mcp",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"description": "The official MCP Server for the Schools API",
55
"author": "Schools <[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
@@ -34,7 +34,7 @@ export const newMcpServer = () =>
3434
new McpServer(
3535
{
3636
name: 'schools_sdk_api',
37-
version: '0.4.0',
37+
version: '0.5.0',
3838
},
3939
{ capabilities: { tools: {}, logging: {} } },
4040
);

src/version.ts

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

0 commit comments

Comments
 (0)