Skip to content

Commit d8e6dc5

Browse files
committed
release: 2.0.0
1 parent c9bdea6 commit d8e6dc5

File tree

6 files changed

+24
-5
lines changed

6 files changed

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

CHANGELOG.md

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

3+
## 2.0.0 (2025-12-19)
4+
5+
Full Changelog: [v1.0.0...v2.0.0](https://github.com/stainless-api/dbahn-stations-typescript/compare/v1.0.0...v2.0.0)
6+
7+
### ⚠ BREAKING CHANGES
8+
9+
* **mcp:** remove deprecated tool schemes
10+
* **mcp:** **Migration:** To migrate, simply modify the command used to invoke the MCP server. Currently, the only supported tool scheme is code mode. Now, starting the server with just `node /path/to/mcp/server` or `npx package-name` will invoke code tools: changing your command to one of these is likely all you will need to do.
11+
12+
### Bug Fixes
13+
14+
* **mcp:** add client instantiation options to code tool ([2c97467](https://github.com/stainless-api/dbahn-stations-typescript/commit/2c97467cdf125cca76da2ad7886312cc19232fec))
15+
* **mcp:** pass base url to code tool ([3f15efc](https://github.com/stainless-api/dbahn-stations-typescript/commit/3f15efc011e9124609085a482305f3d812e8559f))
16+
17+
18+
### Chores
19+
20+
* **mcp:** remove deprecated tool schemes ([c9bdea6](https://github.com/stainless-api/dbahn-stations-typescript/commit/c9bdea6067ce2b1b0c6c57405401807fe9ef9b83))
21+
322
## 1.0.0 (2025-12-10)
423

524
Full Changelog: [v0.0.1...v1.0.0](https://github.com/stainless-api/dbahn-stations-typescript/compare/v0.0.1...v1.0.0)

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": "1.0.0",
3+
"version": "2.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": "1.0.0",
3+
"version": "2.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
@@ -21,7 +21,7 @@ export const newMcpServer = () =>
2121
new McpServer(
2222
{
2323
name: 'dbahn_stations_api',
24-
version: '1.0.0',
24+
version: '2.0.0',
2525
},
2626
{ capabilities: { tools: {}, logging: {} } },
2727
);

src/version.ts

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

0 commit comments

Comments
 (0)