Skip to content

Commit 111ecd7

Browse files
authored
release: prepare v0.9.0 (#164)
1 parent a9faf42 commit 111ecd7

File tree

6 files changed

+26
-24
lines changed

6 files changed

+26
-24
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
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.9.0] - 2026-02-12
10+
911
### Added
1012
- ratatui-based TUI dashboard with real-time agent metrics (feature-gated `tui`, opt-in)
1113
- `TuiChannel` as new `Channel` implementation with bottom-up chat feed, input line, and status bar

Cargo.lock

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

Cargo.toml

Lines changed: 10 additions & 10 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.8.2"
8+
version = "0.9.0"
99
authors = ["bug-ops"]
1010
license = "MIT"
1111
repository = "https://github.com/bug-ops/zeph"
@@ -54,15 +54,15 @@ tracing-subscriber = "0.3"
5454
unicode-width = "0.2"
5555
url = "2.5"
5656
uuid = "1.20"
57-
zeph-a2a = { path = "crates/zeph-a2a", version = "0.8.2" }
58-
zeph-channels = { path = "crates/zeph-channels", version = "0.8.2" }
59-
zeph-core = { path = "crates/zeph-core", version = "0.8.2" }
60-
zeph-llm = { path = "crates/zeph-llm", version = "0.8.2" }
61-
zeph-mcp = { path = "crates/zeph-mcp", version = "0.8.2" }
62-
zeph-memory = { path = "crates/zeph-memory", version = "0.8.2" }
63-
zeph-skills = { path = "crates/zeph-skills", version = "0.8.2" }
64-
zeph-tools = { path = "crates/zeph-tools", version = "0.8.2" }
65-
zeph-tui = { path = "crates/zeph-tui", version = "0.8.2" }
57+
zeph-a2a = { path = "crates/zeph-a2a", version = "0.9.0" }
58+
zeph-channels = { path = "crates/zeph-channels", version = "0.9.0" }
59+
zeph-core = { path = "crates/zeph-core", version = "0.9.0" }
60+
zeph-llm = { path = "crates/zeph-llm", version = "0.9.0" }
61+
zeph-mcp = { path = "crates/zeph-mcp", version = "0.9.0" }
62+
zeph-memory = { path = "crates/zeph-memory", version = "0.9.0" }
63+
zeph-skills = { path = "crates/zeph-skills", version = "0.9.0" }
64+
zeph-tools = { path = "crates/zeph-tools", version = "0.9.0" }
65+
zeph-tui = { path = "crates/zeph-tui", version = "0.9.0" }
6666

6767
[workspace.lints.clippy]
6868
all = "warn"

docs/src/getting-started/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ docker pull ghcr.io/bug-ops/zeph:latest
3333
Or use a specific version:
3434

3535
```bash
36-
docker pull ghcr.io/bug-ops/zeph:v0.8.2
36+
docker pull ghcr.io/bug-ops/zeph:v0.9.0
3737
```
3838

3939
Images are scanned with [Trivy](https://trivy.dev/) in CI/CD and use Oracle Linux 9 Slim base with **0 HIGH/CRITICAL CVEs**. Multi-platform: linux/amd64, linux/arm64.

docs/src/guide/docker.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Docker Deployment
22

3-
Docker Compose automatically pulls the latest image from GitHub Container Registry. To use a specific version, set `ZEPH_IMAGE=ghcr.io/bug-ops/zeph:v0.8.2`.
3+
Docker Compose automatically pulls the latest image from GitHub Container Registry. To use a specific version, set `ZEPH_IMAGE=ghcr.io/bug-ops/zeph:v0.9.0`.
44

55
## Quick Start (Ollama + Qdrant in containers)
66

@@ -56,7 +56,7 @@ ZEPH_VAULT_KEY=./my-key.txt ZEPH_VAULT_PATH=./my-secrets.age \
5656

5757
```bash
5858
# Use a specific release version
59-
ZEPH_IMAGE=ghcr.io/bug-ops/zeph:v0.8.2 docker compose up
59+
ZEPH_IMAGE=ghcr.io/bug-ops/zeph:v0.9.0 docker compose up
6060

6161
# Always pull latest
6262
docker compose pull && docker compose up

docs/src/guide/tui.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ ZEPH_TUI=true zeph
2424

2525
```
2626
+-------------------------------------------------------------+
27-
| Zeph v0.8.2 | Provider: orchestrator | Model: claude-son... |
27+
| Zeph v0.9.0 | Provider: orchestrator | Model: claude-son... |
2828
+----------------------------------------+--------------------+
2929
| | Skills (3/15) |
3030
| | - setup-guide |

0 commit comments

Comments
 (0)