diff --git a/CHANGELOG.md b/CHANGELOG.md index c450f71..1a22fe8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.9](https://github.com/amittamari/hop/compare/v0.2.8...v0.2.9) - 2026-07-13 + +### Added + +- capture session model/commit and skip non-interactive threads ([#75](https://github.com/amittamari/hop/pull/75)) +- harden Codex session parsing ([#74](https://github.com/amittamari/hop/pull/74)) +- simple/raw search modes with guided toolbar ([#73](https://github.com/amittamari/hop/pull/73)) +- hook-based session metadata enrichment ([#65](https://github.com/amittamari/hop/pull/65)) + +### Other + +- trim hot-path allocations in indexing and TUI render ([#77](https://github.com/amittamari/hop/pull/77)) +- adopt edition 2024, in-tree lint policy, and rustfmt config ([#76](https://github.com/amittamari/hop/pull/76)) +- add DESIGN.md, codex-inspired review, and no-local-paths rule +- *(readme)* update demo + ## [0.2.8](https://github.com/amittamari/hop/compare/v0.2.7...v0.2.8) - 2026-06-28 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index 7e3fd1e..162ba4f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1039,7 +1039,7 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" [[package]] name = "hop" -version = "0.2.8" +version = "0.2.9" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index bee3821..d0c92ee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hop" -version = "0.2.8" +version = "0.2.9" edition = "2024" description = "Fast full-text search and resume for coding-agent sessions" license = "MIT"