Skip to content

Commit f376717

Browse files
committed
release: 0.5.0
1 parent a16278a commit f376717

7 files changed

Lines changed: 25 additions & 6 deletions

File tree

.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.4.0"
2+
".": "0.5.0"
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.5.0 (2026-03-02)
4+
5+
Full Changelog: [v0.4.0...v0.5.0](https://github.com/stainless-api/stainless-api-typescript/compare/v0.4.0...v0.5.0)
6+
7+
### Features
8+
9+
* build api: include url in queued/in_progress checks ([b14eaf0](https://github.com/stainless-api/stainless-api-typescript/commit/b14eaf0c0542a461ed3f64a75ea1dd0d23110e5c))
10+
11+
12+
### Bug Fixes
13+
14+
* **mcp:** update prompt ([5a75a9f](https://github.com/stainless-api/stainless-api-typescript/commit/5a75a9fa144162947ab7d39cc58036daca93ceb4))
15+
16+
17+
### Chores
18+
19+
* **internal:** codegen related update ([e83d86b](https://github.com/stainless-api/stainless-api-typescript/commit/e83d86b898766d2509f1cd3615b580effd7ab7b9))
20+
* **internal:** make MCP code execution location configurable via a flag ([43eed7e](https://github.com/stainless-api/stainless-api-typescript/commit/43eed7ee8c6bb8eaaa6ced1e8fd924a79c23019f))
21+
322
## 0.4.0 (2026-02-24)
423

524
Full Changelog: [v0.3.0...v0.4.0](https://github.com/stainless-api/stainless-api-typescript/compare/v0.3.0...v0.4.0)

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.4.0",
3+
"version": "0.5.0",
44
"description": "The official TypeScript library for the Stainless API",
55
"author": "Stainless <support@stainless.com>",
66
"types": "dist/index.d.ts",

packages/mcp-server/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"dxt_version": "0.2",
33
"name": "@stainless-api/mcp",
4-
"version": "0.4.0",
4+
"version": "0.5.0",
55
"description": "The official MCP Server for the Stainless API",
66
"author": {
77
"name": "Stainless",

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/mcp",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"description": "The official MCP Server for the Stainless API",
55
"author": "Stainless <support@stainless.com>",
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
@@ -21,7 +21,7 @@ export const newMcpServer = async (stainlessApiKey: string | undefined) =>
2121
new McpServer(
2222
{
2323
name: 'stainless_api_sdk_api',
24-
version: '0.4.0',
24+
version: '0.5.0',
2525
},
2626
{
2727
instructions: await getInstructions(stainlessApiKey),

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '0.4.0'; // x-release-please-version
1+
export const VERSION = '0.5.0'; // x-release-please-version

0 commit comments

Comments
 (0)