Skip to content

Commit f8bf39f

Browse files
release: 0.1.0-alpha.2
1 parent f37e680 commit f8bf39f

File tree

6 files changed

+14
-5
lines changed

6 files changed

+14
-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.1"
2+
".": "0.1.0-alpha.2"
33
}

CHANGELOG.md

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

3+
## 0.1.0-alpha.2 (2025-04-10)
4+
5+
Full Changelog: [v0.1.0-alpha.1...v0.1.0-alpha.2](https://github.com/hanzoai/js-sdk/compare/v0.1.0-alpha.1...v0.1.0-alpha.2)
6+
7+
### Bug Fixes
8+
9+
* **client:** send all configured auth headers ([#29](https://github.com/hanzoai/js-sdk/issues/29)) ([c98d1f5](https://github.com/hanzoai/js-sdk/commit/c98d1f56b8b5c0fa5b51dfa5f1823dfb236a4d71))
10+
* **mcp:** include all necessary env vars in client instantiation ([f37e680](https://github.com/hanzoai/js-sdk/commit/f37e680fd81df7852b9d3273ad15b9ba83831d24))
11+
312
## 0.1.0-alpha.1 (2025-04-05)
413

514
Full Changelog: [v0.0.1-alpha.3...v0.1.0-alpha.1](https://github.com/hanzoai/js-sdk/compare/v0.0.1-alpha.3...v0.1.0-alpha.1)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hanzoai",
3-
"version": "0.1.0-alpha.1",
3+
"version": "0.1.0-alpha.2",
44
"description": "The official TypeScript library for the Hanzo API",
55
"author": "Hanzo <[email protected]>",
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": "hanzoai-mcp",
3-
"version": "0.1.0-alpha.1",
3+
"version": "0.1.0-alpha.2",
44
"description": "The official MCP Server for the Hanzo API",
55
"author": "Hanzo <[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
@@ -11,7 +11,7 @@ export { endpoints } from './tools';
1111
export const server = new McpServer(
1212
{
1313
name: 'hanzoai_api',
14-
version: '0.1.0-alpha.1',
14+
version: '0.1.0-alpha.2',
1515
},
1616
{
1717
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.1'; // x-release-please-version
1+
export const VERSION = '0.1.0-alpha.2'; // x-release-please-version

0 commit comments

Comments
 (0)