Skip to content

Commit ab5b410

Browse files
committed
release: 0.1.0-alpha.17
1 parent ca1a05e commit ab5b410

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 ([d3da1c0](https://github.com/stainless-api/stainless-api-typescript/commit/d3da1c05c9a14160fb6b43ce82a5b7973da2122f))
10+
* **mcp:** resolve a linting issue in server code ([0808c79](https://github.com/stainless-api/stainless-api-typescript/commit/0808c79b21fd5830dd531e721dd10110e56bd0cf))
11+
12+
13+
### Chores
14+
15+
* **internal:** codegen related update ([3d6a550](https://github.com/stainless-api/stainless-api-typescript/commit/3d6a550eac855d45c8e296bf682956e2630be7d6))
16+
* **internal:** codegen related update ([ce221ea](https://github.com/stainless-api/stainless-api-typescript/commit/ce221ea3e18890628f0d8f9031d33effc0d80fa0))
17+
* **internal:** fix incremental formatting in some cases ([019f360](https://github.com/stainless-api/stainless-api-typescript/commit/019f360155511a38032e4a088d379638efd1293b))
18+
* **internal:** ignore .eslintcache ([b3debcb](https://github.com/stainless-api/stainless-api-typescript/commit/b3debcbd953da3cfa34b89d78cfb1a1bf6242e00))
19+
* **mcp:** allow pointing `docs_search` tool at other URLs ([c019d76](https://github.com/stainless-api/stainless-api-typescript/commit/c019d76a21d94e9143615ec3ca6f179c865534bd))
20+
* update lockfile ([ca1a05e](https://github.com/stainless-api/stainless-api-typescript/commit/ca1a05e06e40a0e99596692bd83dca4957235a4d))
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)