Skip to content

Commit c199bb1

Browse files
stainless-app[bot]yjp20
authored andcommitted
release: 0.1.0-alpha.6
1 parent e003611 commit c199bb1

File tree

6 files changed

+31
-5
lines changed

6 files changed

+31
-5
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-alpha.5"
2+
".": "0.1.0-alpha.6"
33
}

CHANGELOG.md

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

3+
## 0.1.0-alpha.6 (2025-06-25)
4+
5+
Full Changelog: [v0.1.0-alpha.5...v0.1.0-alpha.6](https://github.com/stainless-api/stainless-api-typescript/compare/v0.1.0-alpha.5...v0.1.0-alpha.6)
6+
7+
### Features
8+
9+
* **api:** add diagnostics endpoint ([3363b54](https://github.com/stainless-api/stainless-api-typescript/commit/3363b5472c55301fc2ddf46cf781bcfa06b5a1b3))
10+
* **api:** api update ([1f0826e](https://github.com/stainless-api/stainless-api-typescript/commit/1f0826e57fcea2c20ce9fc408b5b479bd21e5ff8))
11+
* **api:** make project nullable ([4606cf0](https://github.com/stainless-api/stainless-api-typescript/commit/4606cf04e7865acf5cd2ea4588206b06c63ec55f))
12+
* **api:** manual updates ([00345eb](https://github.com/stainless-api/stainless-api-typescript/commit/00345ebe7f05b3473ba4cd38e33b582870b65de5))
13+
14+
15+
### Bug Fixes
16+
17+
* **client:** explicitly copy fetch in withOptions ([a5ba371](https://github.com/stainless-api/stainless-api-typescript/commit/a5ba37150d2b318efa3f4c0859fc10d9673d440a))
18+
19+
20+
### Chores
21+
22+
* change publish docs url ([1a84be8](https://github.com/stainless-api/stainless-api-typescript/commit/1a84be8296f278d1566aa2e677cf2c795bcc1ced))
23+
24+
25+
### Refactors
26+
27+
* **types:** replace Record with mapped types ([79d023f](https://github.com/stainless-api/stainless-api-typescript/commit/79d023feaf318a60a5fc880043a85ec731ae9f83))
28+
329
## 0.1.0-alpha.5 (2025-06-19)
430

531
Full Changelog: [v0.1.0-alpha.4...v0.1.0-alpha.5](https://github.com/stainless-api/stainless-api-typescript/compare/v0.1.0-alpha.4...v0.1.0-alpha.5)

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.5",
3+
"version": "0.1.0-alpha.6",
44
"description": "The official TypeScript library for the Stainless API",
55
"author": "Stainless <>",
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.5",
3+
"version": "0.1.0-alpha.6",
44
"description": "The official MCP Server for the Stainless API",
55
"author": "Stainless <>",
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
@@ -26,7 +26,7 @@ export { endpoints } from './tools';
2626
export const server = new McpServer(
2727
{
2828
name: 'stainless_api_sdk_api',
29-
version: '0.1.0-alpha.5',
29+
version: '0.1.0-alpha.6',
3030
},
3131
{
3232
capabilities: {

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.5'; // x-release-please-version
1+
export const VERSION = '0.1.0-alpha.6'; // x-release-please-version

0 commit comments

Comments
 (0)