Skip to content

Commit ec54f53

Browse files
release: 0.1.0-alpha.2
1 parent fafe47b commit ec54f53

File tree

6 files changed

+21
-5
lines changed

6 files changed

+21
-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: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
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:** fix readEnv type error ([4614532](https://github.com/hanzoai/js-sdk/commit/461453296a0a96ca2794fe471a06dfe6a29882f1))
11+
* **mcp:** include all necessary env vars in client instantiation ([f37e680](https://github.com/hanzoai/js-sdk/commit/f37e680fd81df7852b9d3273ad15b9ba83831d24))
12+
13+
14+
### Chores
15+
16+
* **internal:** improve node 18 shims ([fafe47b](https://github.com/hanzoai/js-sdk/commit/fafe47ba77ff58e83494fe19907fd5e52e8986c8))
17+
* **internal:** upload builds and expand CI branch coverage ([735816d](https://github.com/hanzoai/js-sdk/commit/735816d2aebc298780fdcce87f73daf4b9588a9e))
18+
319
## 0.1.0-alpha.1 (2025-04-05)
420

521
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)