Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).

## [Unreleased]

## [0.12.2] - 2026-02-26

### Added
- `MemoryToolExecutor` in `zeph-core` exposes `memory_search` and `memory_save` as native tools the model can invoke explicitly
- `memory_search` queries SemanticMemory recall, key facts, and session summaries; `memory_save` persists content to long-term memory
Expand Down Expand Up @@ -1346,7 +1348,8 @@ let agent = Agent::new(provider, channel, &skills_prompt, executor);
- Agent calls channel.send_typing() before each LLM request
- Agent::run() uses tokio::select! to race channel messages against shutdown signal

[Unreleased]: https://github.com/bug-ops/zeph/compare/v0.12.1...HEAD
[Unreleased]: https://github.com/bug-ops/zeph/compare/v0.12.2...HEAD
[0.12.2]: https://github.com/bug-ops/zeph/compare/v0.12.1...v0.12.2
[0.12.1]: https://github.com/bug-ops/zeph/compare/v0.12.0...v0.12.1
[0.12.0]: https://github.com/bug-ops/zeph/compare/v0.11.6...v0.12.0
[0.11.6]: https://github.com/bug-ops/zeph/compare/v0.11.5...v0.11.6
Expand Down
28 changes: 14 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 14 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ resolver = "3"
[workspace.package]
edition = "2024"
rust-version = "1.88"
version = "0.12.1"
version = "0.12.2"
authors = ["bug-ops"]
license = "MIT"
repository = "https://github.com/bug-ops/zeph"
Expand Down Expand Up @@ -101,19 +101,19 @@ url = "2.5"
uuid = "1.21"
wiremock = "0.6.5"
zeroize = { version = "1", features = ["derive", "serde"] }
zeph-a2a = { path = "crates/zeph-a2a", version = "0.12.1" }
zeph-acp = { path = "crates/zeph-acp", version = "0.12.1" }
zeph-channels = { path = "crates/zeph-channels", version = "0.12.1" }
zeph-core = { path = "crates/zeph-core", version = "0.12.1" }
zeph-gateway = { path = "crates/zeph-gateway", version = "0.12.1" }
zeph-index = { path = "crates/zeph-index", version = "0.12.1" }
zeph-llm = { path = "crates/zeph-llm", version = "0.12.1" }
zeph-mcp = { path = "crates/zeph-mcp", version = "0.12.1" }
zeph-memory = { path = "crates/zeph-memory", version = "0.12.1" }
zeph-scheduler = { path = "crates/zeph-scheduler", version = "0.12.1" }
zeph-skills = { path = "crates/zeph-skills", version = "0.12.1" }
zeph-tools = { path = "crates/zeph-tools", version = "0.12.1" }
zeph-tui = { path = "crates/zeph-tui", version = "0.12.1" }
zeph-a2a = { path = "crates/zeph-a2a", version = "0.12.2" }
zeph-acp = { path = "crates/zeph-acp", version = "0.12.2" }
zeph-channels = { path = "crates/zeph-channels", version = "0.12.2" }
zeph-core = { path = "crates/zeph-core", version = "0.12.2" }
zeph-gateway = { path = "crates/zeph-gateway", version = "0.12.2" }
zeph-index = { path = "crates/zeph-index", version = "0.12.2" }
zeph-llm = { path = "crates/zeph-llm", version = "0.12.2" }
zeph-mcp = { path = "crates/zeph-mcp", version = "0.12.2" }
zeph-memory = { path = "crates/zeph-memory", version = "0.12.2" }
zeph-scheduler = { path = "crates/zeph-scheduler", version = "0.12.2" }
zeph-skills = { path = "crates/zeph-skills", version = "0.12.2" }
zeph-tools = { path = "crates/zeph-tools", version = "0.12.2" }
zeph-tui = { path = "crates/zeph-tui", version = "0.12.2" }

[workspace.lints.rust]
unsafe_code = "deny"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ show_source_labels = false
[acp]
enabled = false
agent_name = "zeph"
agent_version = "0.12.1"
agent_version = "0.12.2"
max_sessions = 4
session_idle_timeout_secs = 1800
available_models = []
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
source: crates/zeph-tui/src/widgets/splash.rs
assertion_line: 79
expression: output
---
┌──────────────────────────────────────────────────────────┐
Expand All @@ -15,7 +14,7 @@ expression: output
│ ███████╗███████╗██║ ██║ ██║ │
│ ╚══════╝╚══════╝╚═╝ ╚═╝ ╚═╝ │
│ │
│ v0.12.1
│ v0.12.2
│ │
│ Type a message to start. │
│ │
Expand Down
Loading