Skip to content

Commit d18b383

Browse files
committed
release: 0.1.0-alpha.17
1 parent f142ab0 commit d18b383

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 ([a7ce4c8](https://github.com/stainless-api/stainless-api-typescript/commit/a7ce4c8391eed7b102635bd5489fe5e1157b25e9))
10+
* **mcp:** resolve a linting issue in server code ([01ee282](https://github.com/stainless-api/stainless-api-typescript/commit/01ee282e48bb91696d9f59bc7216a11476cc036b))
11+
12+
13+
### Chores
14+
15+
* **internal:** codegen related update ([300a1bd](https://github.com/stainless-api/stainless-api-typescript/commit/300a1bd08e9d1c654fa95ef9e514f603047738d8))
16+
* **internal:** codegen related update ([0c2e059](https://github.com/stainless-api/stainless-api-typescript/commit/0c2e059e942064c1f42480c2d59266d401c17504))
17+
* **internal:** fix incremental formatting in some cases ([8c41268](https://github.com/stainless-api/stainless-api-typescript/commit/8c4126825050a56f9d22f8042da7bcb9ce8c4fd9))
18+
* **internal:** ignore .eslintcache ([5b40c6c](https://github.com/stainless-api/stainless-api-typescript/commit/5b40c6c737a864a1bc8ec32ef849ab1536b2625e))
19+
* **mcp:** allow pointing `docs_search` tool at other URLs ([6dc296b](https://github.com/stainless-api/stainless-api-typescript/commit/6dc296bda4e181691ec1b3dfa327f48b583f3878))
20+
* update lockfile ([f142ab0](https://github.com/stainless-api/stainless-api-typescript/commit/f142ab0972fbb8c76fbaf42be69630bcb8a580b6))
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)