Skip to content

Commit dd2618e

Browse files
committed
release: 0.2.0
1 parent 79e1b0f commit dd2618e

File tree

7 files changed

+33
-8
lines changed

7 files changed

+33
-8
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"
2+
".": "0.2.0"
33
}

CHANGELOG.md

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

3+
## 0.2.0 (2026-02-20)
4+
5+
Full Changelog: [v0.1.0...v0.2.0](https://github.com/stainless-api/stainless-api-typescript/compare/v0.1.0...v0.2.0)
6+
7+
### Features
8+
9+
* **api:** manual updates ([79e1b0f](https://github.com/stainless-api/stainless-api-typescript/commit/79e1b0f2cdc37955766d09304b51017ed6dde8d7))
10+
* **api:** populate integrated_stats ([d197453](https://github.com/stainless-api/stainless-api-typescript/commit/d197453190c3f44ad746e7b3f83c6060d59e2dbb))
11+
12+
13+
### Bug Fixes
14+
15+
* **mcp:** initialize SDK lazily to avoid failing the connection on init errors ([f07516c](https://github.com/stainless-api/stainless-api-typescript/commit/f07516c5bc6719099b64f2a4ef693377d87b8ddc))
16+
17+
18+
### Chores
19+
20+
* **internal:** remove mock server code ([47f0521](https://github.com/stainless-api/stainless-api-typescript/commit/47f0521a21a0e3ae9bcd690e1c4802153d21dc55))
21+
* **mcp:** correctly update version in sync with sdk ([c5227ab](https://github.com/stainless-api/stainless-api-typescript/commit/c5227abb38834153889b213c0e666bb06ffd6464))
22+
* update mock server docs ([39315f6](https://github.com/stainless-api/stainless-api-typescript/commit/39315f6bc3defb8d426178475222568c9d79c138))
23+
324
## 0.1.0 (2026-02-19)
425

526
Full Changelog: [v0.1.0-alpha.27...v0.1.0](https://github.com/stainless-api/stainless-api-typescript/compare/v0.1.0-alpha.27...v0.1.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.1.0",
3+
"version": "0.2.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: 7 additions & 3 deletions
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.1.0-alpha.11",
4+
"version": "0.2.0",
55
"description": "The official MCP Server for the Stainless API",
66
"author": {
77
"name": "Stainless",
@@ -18,7 +18,9 @@
1818
"entry_point": "index.js",
1919
"mcp_config": {
2020
"command": "node",
21-
"args": ["${__dirname}/index.js"],
21+
"args": [
22+
"${__dirname}/index.js"
23+
],
2224
"env": {
2325
"STAINLESS_API_KEY": "${user_config.STAINLESS_API_KEY}",
2426
"STAINLESS_PROJECT": "${user_config.STAINLESS_PROJECT}"
@@ -46,5 +48,7 @@
4648
"node": ">=18.0.0"
4749
}
4850
},
49-
"keywords": ["api"]
51+
"keywords": [
52+
"api"
53+
]
5054
}

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.1.0",
3+
"version": "0.2.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.1.0',
24+
version: '0.2.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.1.0'; // x-release-please-version
1+
export const VERSION = '0.2.0'; // x-release-please-version

0 commit comments

Comments
 (0)