Skip to content

Commit cbf1a8c

Browse files
committed
release: 0.1.0-alpha.17
1 parent c83d766 commit cbf1a8c

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-
".": "0.1.0-alpha.16"
2+
".": "0.1.0-alpha.17"
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+
## 0.1.0-alpha.17 (2025-09-30)
4+
5+
Full Changelog: [v0.1.0-alpha.16...v0.1.0-alpha.17](https://github.com/stainless-api/stainless-api-typescript/compare/v0.1.0-alpha.16...v0.1.0-alpha.17)
6+
7+
### Bug Fixes
8+
9+
* **mcp:** fix cli argument parsing logic ([d413694](https://github.com/stainless-api/stainless-api-typescript/commit/d413694f4fc05a07efb95bbcba3a66241e6e0089))
10+
* **mcp:** resolve a linting issue in server code ([fff4ed2](https://github.com/stainless-api/stainless-api-typescript/commit/fff4ed29c9940808efaf3ecf7e8852106a6d7091))
11+
12+
13+
### Chores
14+
15+
* **internal:** codegen related update ([17950d8](https://github.com/stainless-api/stainless-api-typescript/commit/17950d83c8694ec61ecb22abebebb80ed091d8fe))
16+
* **internal:** codegen related update ([14f3a28](https://github.com/stainless-api/stainless-api-typescript/commit/14f3a28453e099b13d9a0799e057ed6706986c75))
17+
* **internal:** fix incremental formatting in some cases ([10cc0d1](https://github.com/stainless-api/stainless-api-typescript/commit/10cc0d1e70071e0e69becdb87d995246d0fc211d))
18+
* **internal:** ignore .eslintcache ([e9d054b](https://github.com/stainless-api/stainless-api-typescript/commit/e9d054bc98760f59e9440585fc2436af02cf51c7))
19+
* **mcp:** allow pointing `docs_search` tool at other URLs ([1e84dea](https://github.com/stainless-api/stainless-api-typescript/commit/1e84dea080b51a9dea99a63c88af4b4e02a6e487))
20+
* update lockfile ([077fb3a](https://github.com/stainless-api/stainless-api-typescript/commit/077fb3a105d938bd2375a038341e454938afdf79))
21+
322
## 0.1.0-alpha.16 (2025-09-26)
423

524
Full Changelog: [v0.1.0-alpha.15...v0.1.0-alpha.16](https://github.com/stainless-api/stainless-api-typescript/compare/v0.1.0-alpha.15...v0.1.0-alpha.16)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stainless-api/sdk",
3-
"version": "0.1.0-alpha.16",
3+
"version": "0.1.0-alpha.17",
44
"description": "The official TypeScript library for the Stainless API",
55
"author": "Stainless <[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": "@stainless-api/sdk-mcp",
3-
"version": "0.1.0-alpha.16",
3+
"version": "0.1.0-alpha.17",
44
"description": "The official MCP Server for the Stainless API",
55
"author": "Stainless <[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: 'stainless_api_sdk_api',
37-
version: '0.1.0-alpha.16',
37+
version: '0.1.0-alpha.17',
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.1.0-alpha.16'; // x-release-please-version
1+
export const VERSION = '0.1.0-alpha.17'; // x-release-please-version

0 commit comments

Comments
 (0)