Skip to content

Commit 539b6ed

Browse files
committed
release: prepare v0.18.2
- bump version from 0.18.1 to 0.18.2 - fix clippy warnings in zeph-a2a ibct.rs (needless_return, unused import) - update CHANGELOG.md with v0.18.2 release section - update tests badge to 7658
1 parent 9adcf3a commit 539b6ed

File tree

9 files changed

+130
-53
lines changed

9 files changed

+130
-53
lines changed

CHANGELOG.md

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

1111
- Remove dead `ModelOrchestrator` and related `LlmRoutingStrategy::Task` code superseded by `RouterProvider` (#2540)
1212

13+
## [0.18.2] - 2026-03-31
14+
1315
### Added
1416

1517
- feat(mcp): elicitation during tool execution — phase 2 (#2522)
@@ -3182,7 +3184,8 @@ let agent = Agent::new(provider, channel, &skills_prompt, executor);
31823184
- Agent::run() uses tokio::select! to race channel messages against shutdown signal
31833185

31843186
[0.16.0]: https://github.com/bug-ops/zeph/compare/v0.15.3...v0.16.0
3185-
[Unreleased]: https://github.com/bug-ops/zeph/compare/v0.18.1...HEAD
3187+
[Unreleased]: https://github.com/bug-ops/zeph/compare/v0.18.2...HEAD
3188+
[0.18.2]: https://github.com/bug-ops/zeph/compare/v0.18.1...v0.18.2
31863189
[0.18.1]: https://github.com/bug-ops/zeph/compare/v0.18.0...v0.18.1
31873190
[0.18.0]: https://github.com/bug-ops/zeph/compare/v0.17.1...v0.18.0
31883191
[0.17.1]: https://github.com/bug-ops/zeph/compare/v0.17.0...v0.17.1

Cargo.lock

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

Cargo.toml

Lines changed: 22 additions & 22 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.18.1"
8+
version = "0.18.2"
99
authors = ["bug-ops"]
1010
license = "MIT"
1111
repository = "https://github.com/bug-ops/zeph"
@@ -121,27 +121,27 @@ url = "2.5"
121121
uuid = "1.23"
122122
wiremock = "0.6.5"
123123
zeroize = { version = "1", default-features = false }
124-
zeph-a2a = { path = "crates/zeph-a2a", version = "0.18.1" }
125-
zeph-acp = { path = "crates/zeph-acp", version = "0.18.1" }
126-
zeph-db = { path = "crates/zeph-db", version = "0.18.1", default-features = false }
127-
zeph-channels = { path = "crates/zeph-channels", version = "0.18.1" }
128-
zeph-common = { path = "crates/zeph-common", version = "0.18.1" }
129-
zeph-config = { path = "crates/zeph-config", version = "0.18.1" }
130-
zeph-core = { path = "crates/zeph-core", version = "0.18.1" }
131-
zeph-experiments = { path = "crates/zeph-experiments", version = "0.18.1" }
132-
zeph-gateway = { path = "crates/zeph-gateway", version = "0.18.1" }
133-
zeph-index = { path = "crates/zeph-index", version = "0.18.1" }
134-
zeph-llm = { path = "crates/zeph-llm", version = "0.18.1" }
135-
zeph-mcp = { path = "crates/zeph-mcp", version = "0.18.1" }
136-
zeph-memory = { path = "crates/zeph-memory", version = "0.18.1", default-features = false }
137-
zeph-scheduler = { path = "crates/zeph-scheduler", version = "0.18.1" }
138-
zeph-skills = { path = "crates/zeph-skills", version = "0.18.1" }
139-
zeph-tools = { path = "crates/zeph-tools", version = "0.18.1" }
140-
zeph-tui = { path = "crates/zeph-tui", version = "0.18.1" }
141-
zeph-vault = { path = "crates/zeph-vault", version = "0.18.1" }
142-
zeph-orchestration = { path = "crates/zeph-orchestration", version = "0.18.1" }
143-
zeph-sanitizer = { path = "crates/zeph-sanitizer", version = "0.18.1" }
144-
zeph-subagent = { path = "crates/zeph-subagent", version = "0.18.1" }
124+
zeph-a2a = { path = "crates/zeph-a2a", version = "0.18.2" }
125+
zeph-acp = { path = "crates/zeph-acp", version = "0.18.2" }
126+
zeph-db = { path = "crates/zeph-db", version = "0.18.2", default-features = false }
127+
zeph-channels = { path = "crates/zeph-channels", version = "0.18.2" }
128+
zeph-common = { path = "crates/zeph-common", version = "0.18.2" }
129+
zeph-config = { path = "crates/zeph-config", version = "0.18.2" }
130+
zeph-core = { path = "crates/zeph-core", version = "0.18.2" }
131+
zeph-experiments = { path = "crates/zeph-experiments", version = "0.18.2" }
132+
zeph-gateway = { path = "crates/zeph-gateway", version = "0.18.2" }
133+
zeph-index = { path = "crates/zeph-index", version = "0.18.2" }
134+
zeph-llm = { path = "crates/zeph-llm", version = "0.18.2" }
135+
zeph-mcp = { path = "crates/zeph-mcp", version = "0.18.2" }
136+
zeph-memory = { path = "crates/zeph-memory", version = "0.18.2", default-features = false }
137+
zeph-scheduler = { path = "crates/zeph-scheduler", version = "0.18.2" }
138+
zeph-skills = { path = "crates/zeph-skills", version = "0.18.2" }
139+
zeph-tools = { path = "crates/zeph-tools", version = "0.18.2" }
140+
zeph-tui = { path = "crates/zeph-tui", version = "0.18.2" }
141+
zeph-vault = { path = "crates/zeph-vault", version = "0.18.2" }
142+
zeph-orchestration = { path = "crates/zeph-orchestration", version = "0.18.2" }
143+
zeph-sanitizer = { path = "crates/zeph-sanitizer", version = "0.18.2" }
144+
zeph-subagent = { path = "crates/zeph-subagent", version = "0.18.2" }
145145

146146
[workspace.lints.rust]
147147
unsafe_code = "deny"

0 commit comments

Comments
 (0)