Skip to content

Commit c8bf3bc

Browse files
committed
release: prepare v0.14.1
1 parent e8c58dd commit c8bf3bc

File tree

5 files changed

+60
-56
lines changed

5 files changed

+60
-56
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
66

77
## [Unreleased]
88

9+
## [0.14.1] - 2026-03-07
10+
911
### Added
1012

1113
- Extend `[agent] summary_model` to support all provider backends: `claude[/<model>]` (requires `ZEPH_CLAUDE_API_KEY`), `openai[/<model>]` (requires `ZEPH_OPENAI_API_KEY`), `compatible/<name>` (named entry from `[[llm.compatible]]`), `candle` (uses `[llm.candle]` config, feature-gated). Previously only `ollama/<model>` was supported.
@@ -1843,7 +1845,8 @@ let agent = Agent::new(provider, channel, &skills_prompt, executor);
18431845
- Agent calls channel.send_typing() before each LLM request
18441846
- Agent::run() uses tokio::select! to race channel messages against shutdown signal
18451847

1846-
[Unreleased]: https://github.com/bug-ops/zeph/compare/v0.14.0...HEAD
1848+
[Unreleased]: https://github.com/bug-ops/zeph/compare/v0.14.1...HEAD
1849+
[0.14.1]: https://github.com/bug-ops/zeph/compare/v0.14.0...v0.14.1
18471850
[0.14.0]: https://github.com/bug-ops/zeph/compare/v0.13.0...v0.14.0
18481851
[0.13.0]: https://github.com/bug-ops/zeph/compare/v0.12.6...v0.13.0
18491852
[0.12.6]: https://github.com/bug-ops/zeph/compare/v0.12.5...v0.12.6

Cargo.lock

Lines changed: 39 additions & 39 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ resolver = "3"
55
[workspace.package]
66
edition = "2024"
77
rust-version = "1.88"
8-
version = "0.14.0"
8+
version = "0.14.1"
99
authors = ["bug-ops"]
1010
license = "MIT"
1111
repository = "https://github.com/bug-ops/zeph"
@@ -113,19 +113,19 @@ url = "2.5"
113113
uuid = "1.21"
114114
wiremock = "0.6.5"
115115
zeroize = { version = "1", features = ["derive", "serde"] }
116-
zeph-a2a = { path = "crates/zeph-a2a", version = "0.14.0" }
117-
zeph-acp = { path = "crates/zeph-acp", version = "0.14.0" }
118-
zeph-channels = { path = "crates/zeph-channels", version = "0.14.0" }
119-
zeph-core = { path = "crates/zeph-core", version = "0.14.0" }
120-
zeph-gateway = { path = "crates/zeph-gateway", version = "0.14.0" }
121-
zeph-index = { path = "crates/zeph-index", version = "0.14.0" }
122-
zeph-llm = { path = "crates/zeph-llm", version = "0.14.0" }
123-
zeph-mcp = { path = "crates/zeph-mcp", version = "0.14.0" }
124-
zeph-memory = { path = "crates/zeph-memory", version = "0.14.0" }
125-
zeph-scheduler = { path = "crates/zeph-scheduler", version = "0.14.0" }
126-
zeph-skills = { path = "crates/zeph-skills", version = "0.14.0" }
127-
zeph-tools = { path = "crates/zeph-tools", version = "0.14.0" }
128-
zeph-tui = { path = "crates/zeph-tui", version = "0.14.0" }
116+
zeph-a2a = { path = "crates/zeph-a2a", version = "0.14.1" }
117+
zeph-acp = { path = "crates/zeph-acp", version = "0.14.1" }
118+
zeph-channels = { path = "crates/zeph-channels", version = "0.14.1" }
119+
zeph-core = { path = "crates/zeph-core", version = "0.14.1" }
120+
zeph-gateway = { path = "crates/zeph-gateway", version = "0.14.1" }
121+
zeph-index = { path = "crates/zeph-index", version = "0.14.1" }
122+
zeph-llm = { path = "crates/zeph-llm", version = "0.14.1" }
123+
zeph-mcp = { path = "crates/zeph-mcp", version = "0.14.1" }
124+
zeph-memory = { path = "crates/zeph-memory", version = "0.14.1" }
125+
zeph-scheduler = { path = "crates/zeph-scheduler", version = "0.14.1" }
126+
zeph-skills = { path = "crates/zeph-skills", version = "0.14.1" }
127+
zeph-tools = { path = "crates/zeph-tools", version = "0.14.1" }
128+
zeph-tui = { path = "crates/zeph-tui", version = "0.14.1" }
129129

130130
[workspace.lints.rust]
131131
unsafe_code = "deny"

crates/zeph-core/src/config/snapshots/zeph_core__config__types__tests__config_default_snapshot.snap

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
source: crates/zeph-core/src/config/types.rs
3+
assertion_line: 2017
34
expression: toml_str
45
---
56
[agent]
@@ -263,7 +264,7 @@ show_source_labels = false
263264
[acp]
264265
enabled = false
265266
agent_name = "zeph"
266-
agent_version = "0.14.0"
267+
agent_version = "0.14.1"
267268
max_sessions = 4
268269
session_idle_timeout_secs = 1800
269270
available_models = []

crates/zeph-tui/src/widgets/snapshots/zeph_tui__widgets__splash__tests__splash_default.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ expression: output
1515
│ ███████╗███████╗██║ ██║ ██║ │
1616
│ ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═╝ │
1717
│ │
18-
v0.14.0
18+
v0.14.1
1919
│ │
2020
Type a message to start. │
2121
│ │

0 commit comments

Comments
 (0)