Skip to content

Commit cf30fca

Browse files
chore(release): 15.15.1 [skip ci]
## <small>15.15.1 (2026-02-05)</small> * Merge pull request #387 from zbigniewsobiecki/fix/max-gadgets-break-loop ([5c56c11](5c56c11)), closes [#387](#387) * Merge pull request #388 from zbigniewsobiecki/dev ([a43c6bf](a43c6bf)), closes [#388](#388) * fix(agent): break stream loop when gadget limit exceeded ([891c7e4](891c7e4))
1 parent a43c6bf commit cf30fca

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## <small>15.15.1 (2026-02-05)</small>
2+
3+
* Merge pull request #387 from zbigniewsobiecki/fix/max-gadgets-break-loop ([5c56c11](https://github.com/zbigniewsobiecki/llmist/commit/5c56c11)), closes [#387](https://github.com/zbigniewsobiecki/llmist/issues/387)
4+
* Merge pull request #388 from zbigniewsobiecki/dev ([a43c6bf](https://github.com/zbigniewsobiecki/llmist/commit/a43c6bf)), closes [#388](https://github.com/zbigniewsobiecki/llmist/issues/388)
5+
* fix(agent): break stream loop when gadget limit exceeded ([891c7e4](https://github.com/zbigniewsobiecki/llmist/commit/891c7e4))
6+
17
## 15.15.0 (2026-02-05)
28

39
* Merge pull request #386 from zbigniewsobiecki/dev ([2ab73e5](https://github.com/zbigniewsobiecki/llmist/commit/2ab73e5)), closes [#386](https://github.com/zbigniewsobiecki/llmist/issues/386)

packages/cli/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@llmist/cli",
3-
"version": "15.15.0",
3+
"version": "15.15.1",
44
"description": "CLI for llmist - run LLM agents from the command line",
55
"type": "module",
66
"main": "dist/cli.js",
@@ -56,7 +56,7 @@
5656
"node": ">=22.0.0"
5757
},
5858
"dependencies": {
59-
"llmist": "^15.15.0",
59+
"llmist": "^15.15.1",
6060
"@unblessed/node": "^1.0.0-alpha.23",
6161
"chalk": "^5.6.2",
6262
"commander": "^12.1.0",
@@ -70,7 +70,7 @@
7070
"zod": "^4.1.12"
7171
},
7272
"devDependencies": {
73-
"@llmist/testing": "^15.15.0",
73+
"@llmist/testing": "^15.15.1",
7474
"@types/diff": "^8.0.0",
7575
"@types/js-yaml": "^4.0.9",
7676
"@types/marked-terminal": "^6.1.1",

packages/llmist/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "llmist",
3-
"version": "15.15.0",
3+
"version": "15.15.1",
44
"description": "TypeScript LLM client with streaming tool execution. Tools fire mid-stream. Built-in function calling works with any model—no structured outputs or native tool support required.",
55
"type": "module",
66
"main": "dist/index.cjs",

packages/testing/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@llmist/testing",
3-
"version": "15.15.0",
3+
"version": "15.15.1",
44
"description": "Testing utilities for llmist - mock LLM responses and test agents",
55
"type": "module",
66
"main": "dist/index.cjs",
@@ -50,11 +50,11 @@
5050
"node": ">=22.0.0"
5151
},
5252
"peerDependencies": {
53-
"llmist": "^15.15.0"
53+
"llmist": "^15.15.1"
5454
},
5555
"devDependencies": {
5656
"@types/node": "^20.12.7",
57-
"llmist": "^15.15.0",
57+
"llmist": "^15.15.1",
5858
"rimraf": "^5.0.5",
5959
"tslog": "^4.10.2",
6060
"tsup": "^8.3.5",

0 commit comments

Comments
 (0)