Skip to content

Commit 57228a1

Browse files
committed
release: 1.0.0
1 parent f1f08bf commit 57228a1

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.0.1"
2+
".": "1.0.0"
33
}

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Changelog
2+
3+
## 1.0.0 (2025-12-10)
4+
5+
Full Changelog: [v0.0.1...v1.0.0](https://github.com/stainless-api/dbahn-stations-typescript/compare/v0.0.1...v1.0.0)
6+
7+
### Features
8+
9+
* **mcp:** add typescript check to code execution tool ([eff235b](https://github.com/stainless-api/dbahn-stations-typescript/commit/eff235b644c69ca3f28dec4d47b142188c6f1642))
10+
* **mcp:** handle code mode calls in the Stainless API ([d892d76](https://github.com/stainless-api/dbahn-stations-typescript/commit/d892d7609e3fd1f0a5b94229395a2aeaabf372f6))
11+
12+
13+
### Bug Fixes
14+
15+
* **mcp:** correct code tool API endpoint ([3995f04](https://github.com/stainless-api/dbahn-stations-typescript/commit/3995f04594ea100bb3a3161b8ecb88a004d87cc1))
16+
* **mcp:** return correct lines on typescript errors ([3dfff0a](https://github.com/stainless-api/dbahn-stations-typescript/commit/3dfff0a91b64fa8835eabc7e37fc89a28c59da24))
17+
18+
19+
### Chores
20+
21+
* configure new SDK language ([63460e8](https://github.com/stainless-api/dbahn-stations-typescript/commit/63460e81f47218742406a42195bea4083eff713b))
22+
* **internal:** codegen related update ([a9a23ed](https://github.com/stainless-api/dbahn-stations-typescript/commit/a9a23edd001ad74d76e181d207c073770b484947))
23+
* **internal:** codegen related update ([7a093ef](https://github.com/stainless-api/dbahn-stations-typescript/commit/7a093ef2a26b0593684fd477c8f4c02f1a15f3b0))
24+
* **internal:** configure MCP Server hosting ([005cd72](https://github.com/stainless-api/dbahn-stations-typescript/commit/005cd72e94fee7114297a5da4841271474e038e5))
25+
* **internal:** configure pnpm minimumReleaseAge to 1 day ([62740a2](https://github.com/stainless-api/dbahn-stations-typescript/commit/62740a2d74a9e25ff27a7c8175ccfa90fab5bda1))
26+
* update SDK settings ([f1f08bf](https://github.com/stainless-api/dbahn-stations-typescript/commit/f1f08bf94b80aa8e115785bb3ec8bf6df79b6b12))
27+
* update SDK settings ([914fb2e](https://github.com/stainless-api/dbahn-stations-typescript/commit/914fb2eae98add15b5c2e58971b59130c2e346d1))
28+
* use latest @modelcontextprotocol/sdk ([9f606ca](https://github.com/stainless-api/dbahn-stations-typescript/commit/9f606ca09313d0ad58f3868e80a1609fb45206a4))

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dbahn-stations",
3-
"version": "0.0.1",
3+
"version": "1.0.0",
44
"description": "The official TypeScript library for the Dbahn Stations API",
55
"author": "Dbahn Stations <[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": "dbahn-stations-mcp",
3-
"version": "0.0.1",
3+
"version": "1.0.0",
44
"description": "The official MCP Server for the Dbahn Stations API",
55
"author": "Dbahn Stations <[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: 'dbahn_stations_api',
37-
version: '0.0.1',
37+
version: '1.0.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.0.1'; // x-release-please-version
1+
export const VERSION = '1.0.0'; // x-release-please-version

0 commit comments

Comments
 (0)