Skip to content

Commit 8bac4ad

Browse files
committed
release: 0.1.0-alpha.26
1 parent 6a23407 commit 8bac4ad

6 files changed

Lines changed: 18 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.25"
2+
".": "0.1.0-alpha.26"
33
}

CHANGELOG.md

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

3+
## 0.1.0-alpha.26 (2026-02-19)
4+
5+
Full Changelog: [v0.1.0-alpha.25...v0.1.0-alpha.26](https://github.com/stainless-api/stainless-api-typescript/compare/v0.1.0-alpha.25...v0.1.0-alpha.26)
6+
7+
### Features
8+
9+
* **api:** add a super basic GET /v0/user endpoint ([adda799](https://github.com/stainless-api/stainless-api-typescript/commit/adda799d4c3116c3b3600ba01935b13482f2d66f))
10+
11+
12+
### Chores
13+
14+
* **internal:** cache fetch instruction calls in MCP server ([d395c11](https://github.com/stainless-api/stainless-api-typescript/commit/d395c113b29c6e0cf9041a0d8876c7fa027e381f))
15+
316
## 0.1.0-alpha.25 (2026-02-18)
417

518
Full Changelog: [v0.1.0-alpha.24...v0.1.0-alpha.25](https://github.com/stainless-api/stainless-api-typescript/compare/v0.1.0-alpha.24...v0.1.0-alpha.25)

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

0 commit comments

Comments
 (0)