Skip to content

Commit b528bfb

Browse files
committed
release: 0.3.0
1 parent a212837 commit b528bfb

7 files changed

Lines changed: 20 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.2.0"
2+
".": "0.3.0"
33
}

CHANGELOG.md

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

3+
## 0.3.0 (2026-02-23)
4+
5+
Full Changelog: [v0.2.0...v0.3.0](https://github.com/stainless-api/stainless-api-typescript/compare/v0.2.0...v0.3.0)
6+
7+
### Features
8+
9+
* add completed_at to build api object ([a212837](https://github.com/stainless-api/stainless-api-typescript/commit/a2128373a8c8b649977ba1f03ec6577ca977941c))
10+
* Revert "feat(api): populate integrated_stats ([#16032](https://github.com/stainless-api/stainless-api-typescript/issues/16032))" ([a859bac](https://github.com/stainless-api/stainless-api-typescript/commit/a859bac4afb4ba327af3ccfa0fefee949ddf9282))
11+
12+
13+
### Bug Fixes
14+
15+
* **api:** mark integrated data on all commits with the same generated SHA ([8f69b8e](https://github.com/stainless-api/stainless-api-typescript/commit/8f69b8eaf2f3f9ef3e9933d7d2973a48f1e177c3))
16+
317
## 0.2.0 (2026-02-20)
418

519
Full Changelog: [v0.1.0...v0.2.0](https://github.com/stainless-api/stainless-api-typescript/compare/v0.1.0...v0.2.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.2.0",
3+
"version": "0.3.0",
44
"description": "The official TypeScript library for the Stainless API",
55
"author": "Stainless <[email protected]>",
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.2.0",
4+
"version": "0.3.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.2.0",
3+
"version": "0.3.0",
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
@@ -21,7 +21,7 @@ export const newMcpServer = async (stainlessApiKey: string | undefined) =>
2121
new McpServer(
2222
{
2323
name: 'stainless_api_sdk_api',
24-
version: '0.2.0',
24+
version: '0.3.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.2.0'; // x-release-please-version
1+
export const VERSION = '0.3.0'; // x-release-please-version

0 commit comments

Comments
 (0)