Skip to content

Commit 9bf0b1c

Browse files
committed
release: 0.1.0
1 parent 5a2ebd6 commit 9bf0b1c

6 files changed

Lines changed: 13 additions & 5 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.1.0-alpha.27"
2+
".": "0.1.0"
33
}

CHANGELOG.md

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

3+
## 0.1.0 (2026-02-19)
4+
5+
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)
6+
7+
### Chores
8+
9+
* **mcp:** fix mcp package name ([5875dc4](https://github.com/stainless-api/stainless-api-typescript/commit/5875dc4fae895f94b80915f7ae5792c25cdf0bbf))
10+
311
## 0.1.0-alpha.27 (2026-02-19)
412

513
Full Changelog: [v0.1.0-alpha.26...v0.1.0-alpha.27](https://github.com/stainless-api/stainless-api-typescript/compare/v0.1.0-alpha.26...v0.1.0-alpha.27)

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

0 commit comments

Comments
 (0)