Skip to content

Commit 348267d

Browse files
committed
release: 0.1.0-alpha.20
1 parent 1c07f4a commit 348267d

File tree

6 files changed

+23
-5
lines changed

6 files changed

+23
-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.19"
2+
".": "0.1.0-alpha.20"
33
}

CHANGELOG.md

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

3+
## 0.1.0-alpha.20 (2025-12-17)
4+
5+
Full Changelog: [v0.1.0-alpha.19...v0.1.0-alpha.20](https://github.com/stainless-api/stainless-api-typescript/compare/v0.1.0-alpha.19...v0.1.0-alpha.20)
6+
7+
### Features
8+
9+
* add openapi target ([1c07f4a](https://github.com/stainless-api/stainless-api-typescript/commit/1c07f4a27ff101b648b41178c89de46332e47f48))
10+
11+
12+
### Bug Fixes
13+
14+
* **mcp:** add client instantiation options to code tool ([71cc60e](https://github.com/stainless-api/stainless-api-typescript/commit/71cc60e3a35a4ed5cf7bb44ae17d1033804d9079))
15+
16+
17+
### Refactors
18+
19+
* **api:** change completed shape ([ec7f479](https://github.com/stainless-api/stainless-api-typescript/commit/ec7f479865b9f619d433cbcecc3980b9f8dd2c44))
20+
321
## 0.1.0-alpha.19 (2025-12-09)
422

523
Full Changelog: [v0.1.0-alpha.18...v0.1.0-alpha.19](https://github.com/stainless-api/stainless-api-typescript/compare/v0.1.0-alpha.18...v0.1.0-alpha.19)

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.19",
3+
"version": "0.1.0-alpha.20",
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.19",
3+
"version": "0.1.0-alpha.20",
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.19',
37+
version: '0.1.0-alpha.20',
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.19'; // x-release-please-version
1+
export const VERSION = '0.1.0-alpha.20'; // x-release-please-version

0 commit comments

Comments
 (0)