Skip to content

Commit d1bfa6a

Browse files
committed
release: 0.1.0-alpha.17
1 parent 4174b25 commit d1bfa6a

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 ([5f732d5](https://github.com/stainless-api/stainless-api-typescript/commit/5f732d585a77778852185cde12cba2769fdad594))
10+
* **mcp:** resolve a linting issue in server code ([0e0c39a](https://github.com/stainless-api/stainless-api-typescript/commit/0e0c39aa897aa22101a54061b83f9979282ac96c))
11+
12+
13+
### Chores
14+
15+
* **internal:** codegen related update ([290ec28](https://github.com/stainless-api/stainless-api-typescript/commit/290ec28995b2c32c4c134f9d42707d3fe1fe00ba))
16+
* **internal:** codegen related update ([af44eb1](https://github.com/stainless-api/stainless-api-typescript/commit/af44eb1e88858a58576b5b7257f885c071d468db))
17+
* **internal:** fix incremental formatting in some cases ([e50b868](https://github.com/stainless-api/stainless-api-typescript/commit/e50b868b7a97f9a3777d51acc4b2d1477f030d16))
18+
* **internal:** ignore .eslintcache ([306253e](https://github.com/stainless-api/stainless-api-typescript/commit/306253e29befcef44c31d2c0220c892d36d53f4f))
19+
* **mcp:** allow pointing `docs_search` tool at other URLs ([39ee746](https://github.com/stainless-api/stainless-api-typescript/commit/39ee74643b250b6c9613e16bed0e24b76f736d3c))
20+
* update lockfile ([4174b25](https://github.com/stainless-api/stainless-api-typescript/commit/4174b25b2d98ce544c119f5239677c13917409f8))
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)