Skip to content

Commit be50c7d

Browse files
release: 0.10.1
1 parent bdc670f commit be50c7d

File tree

6 files changed

+23
-5
lines changed

6 files changed

+23
-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.10.0"
2+
".": "0.10.1"
33
}

CHANGELOG.md

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

3+
## 0.10.1 (2025-08-14)
4+
5+
Full Changelog: [v0.10.0...v0.10.1](https://github.com/nextbillion-ai/nextbillion-sdk-node/compare/v0.10.0...v0.10.1)
6+
7+
### Features
8+
9+
* **mcp:** add unix socket option for remote MCP ([b493336](https://github.com/nextbillion-ai/nextbillion-sdk-node/commit/b49333613719f1ed72fda780df4f455fe657e8fc))
10+
11+
12+
### Chores
13+
14+
* **internal:** codegen related update ([d47e729](https://github.com/nextbillion-ai/nextbillion-sdk-node/commit/d47e729c9db497e1356c3c3e4f99f0aa6e05bf0a))
15+
* **internal:** move publish config ([cee091a](https://github.com/nextbillion-ai/nextbillion-sdk-node/commit/cee091a9acc761b7e2cbd1c2f6d11045a899521a))
16+
* **internal:** update comment in script ([ee90f42](https://github.com/nextbillion-ai/nextbillion-sdk-node/commit/ee90f42a519607b043665daf70588d59005e7acb))
17+
* **mcp:** minor cleanup of types and package.json ([bdc670f](https://github.com/nextbillion-ai/nextbillion-sdk-node/commit/bdc670fe5486aa7eedd15f62973c870d5bae58a0))
18+
* **mcp:** refactor streamable http transport ([852d01e](https://github.com/nextbillion-ai/nextbillion-sdk-node/commit/852d01e9cbaec5c9af128bb22c1bc4930eb3f1d1))
19+
* update @stainless-api/prism-cli to v5.15.0 ([a550f29](https://github.com/nextbillion-ai/nextbillion-sdk-node/commit/a550f295b52096f74b120a7cc5f660c5087909b9))
20+
321
## 0.10.0 (2025-08-06)
422

523
Full Changelog: [v0.9.1...v0.10.0](https://github.com/nextbillion-ai/nextbillion-sdk-node/compare/v0.9.1...v0.10.0)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nbai/sdk",
3-
"version": "0.10.0",
3+
"version": "0.10.1",
44
"description": "The official TypeScript library for the Nextbillion SDK API",
55
"author": "Nextbillion SDK <yun@nextbillion.ai>",
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": "@nbai/sdk-mcp",
3-
"version": "0.10.0",
3+
"version": "0.10.1",
44
"description": "The official MCP Server for the Nextbillion SDK API",
55
"author": "Nextbillion SDK <yun@nextbillion.ai>",
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 const newMcpServer = () =>
2626
new McpServer(
2727
{
2828
name: 'nbai_sdk_api',
29-
version: '0.10.0',
29+
version: '0.10.1',
3030
},
3131
{ capabilities: { tools: {}, logging: {} } },
3232
);

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '0.10.0'; // x-release-please-version
1+
export const VERSION = '0.10.1'; // x-release-please-version

0 commit comments

Comments
 (0)