diff --git a/CHANGELOG.md b/CHANGELOG.md index b59506a..1b08ce6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.6.1] - 2026-04-08 + +### Added + +- **wake**: long-poll `/api/internal/agent/wake` endpoint — CLI holds connection open and syncs immediately (<100ms) when server sends a wake signal instead of waiting for the next poll interval + ## [0.6.0] - 2026-04-08 diff --git a/internal/cmd/version.go b/internal/cmd/version.go index 4ca0579..05e8fca 100644 --- a/internal/cmd/version.go +++ b/internal/cmd/version.go @@ -1,4 +1,4 @@ package cmd // Version is the CLI version. Overridden by goreleaser ldflags at release time. -var Version = "0.6.0" +var Version = "0.6.1"