Skip to content

Commit 0659a21

Browse files
release: 0.1.0-alpha.9
1 parent 4564ccb commit 0659a21

File tree

6 files changed

+25
-5
lines changed

6 files changed

+25
-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.8"
2+
".": "0.1.0-alpha.9"
33
}

CHANGELOG.md

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

3+
## 0.1.0-alpha.9 (2025-12-01)
4+
5+
Full Changelog: [v0.1.0-alpha.8...v0.1.0-alpha.9](https://github.com/dedalus-labs/dedalus-sdk-typescript/compare/v0.1.0-alpha.8...v0.1.0-alpha.9)
6+
7+
### Features
8+
9+
* **api:** config update for dedalus-ai/dev ([8c11861](https://github.com/dedalus-labs/dedalus-sdk-typescript/commit/8c118618ec69f55a087a043abee618119a0606d2))
10+
* **api:** mcp server params ([8c60036](https://github.com/dedalus-labs/dedalus-sdk-typescript/commit/8c60036fbf24faa8cb214d374b1ff3e870729305))
11+
12+
13+
### Bug Fixes
14+
15+
* **api:** add thought signature ([4564ccb](https://github.com/dedalus-labs/dedalus-sdk-typescript/commit/4564ccb11385c0570266eee44798058d9f73fe48))
16+
17+
18+
### Chores
19+
20+
* **api:** migrate pkg manager to uv ([12a8f74](https://github.com/dedalus-labs/dedalus-sdk-typescript/commit/12a8f74e586a131a1cbd7a0dddfbb5da2a50e0a0))
21+
* **client:** fix logger property type ([a57767f](https://github.com/dedalus-labs/dedalus-sdk-typescript/commit/a57767f1f7b579882068f6f59a3694bb24981fc9))
22+
323
## 0.1.0-alpha.8 (2025-11-26)
424

525
Full Changelog: [v0.1.0-alpha.7...v0.1.0-alpha.8](https://github.com/dedalus-labs/dedalus-sdk-typescript/compare/v0.1.0-alpha.7...v0.1.0-alpha.8)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dedalus-labs",
3-
"version": "0.1.0-alpha.8",
3+
"version": "0.1.0-alpha.9",
44
"description": "The official TypeScript library for the Dedalus API",
55
"author": "Dedalus <founders@dedaluslabs.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": "dedalus-labs-mcp",
3-
"version": "0.1.0-alpha.8",
3+
"version": "0.1.0-alpha.9",
44
"description": "The official MCP Server for the Dedalus API",
55
"author": "Dedalus <founders@dedaluslabs.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
@@ -34,7 +34,7 @@ export const newMcpServer = () =>
3434
new McpServer(
3535
{
3636
name: 'dedalus_labs_api',
37-
version: '0.1.0-alpha.8',
37+
version: '0.1.0-alpha.9',
3838
},
3939
{ capabilities: { tools: {}, logging: {} } },
4040
);

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

0 commit comments

Comments
 (0)