From 1192774e301a55c4c2f6ac6b6348596c51cb3b01 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Tue, 10 Feb 2026 07:51:52 -0600 Subject: [PATCH] Use build timestamp version in TUI display The TUI agent state was using CARGO_PKG_VERSION (0.1.0) instead of version::current_version() which returns the RFC 3339 build timestamp. --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 116be61..cae8c54 100644 --- a/src/main.rs +++ b/src/main.rs @@ -246,7 +246,7 @@ async fn async_main() { let event_bus = tui::EventBus::new(100); let agent_state = Arc::new(Mutex::new(tui::AgentState::new( hostname, - env!("CARGO_PKG_VERSION").to_string(), + version::current_version().to_string(), ))); // Spawn TUI task