diff --git a/CHANGELOG.md b/CHANGELOG.md index d438a29..839b62a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,24 @@ 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.3.0] - 2026-03-23 + +### Added + +- add Obsidian vault search support (--obsidian flag) (#20) +- add date range filtering support (--since, --until, --date) (#15) +- auto-generate CHANGELOG.md during cut-release (#17) +- automate cargo publish + homebrew tap update on release (#16) + +### Changed + +- bump version to 0.2.0 (#18) +- add automated release cutting workflow (#13) +- switch cut-release to PR-based flow (#19) +- use RELEASE_TOKEN for cut-release workflow +- simplify Quick Start with paste-able prompt (#12) + ## [0.1.1] - 2026-02-11 ### Added @@ -40,3 +58,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [0.1.1]: https://github.com/sinzin91/search-sessions/releases/tag/v0.1.1 [0.1.0]: https://github.com/sinzin91/search-sessions/releases/tag/v0.1.0 +[0.3.0]: https://github.com/sinzin91/search-sessions/compare/v0.1.1...v0.3.0 diff --git a/Cargo.lock b/Cargo.lock index e20cecf..ab97d0f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -651,7 +651,7 @@ dependencies = [ [[package]] name = "search-sessions" -version = "0.1.1" +version = "0.3.0" dependencies = [ "chrono", "clap", diff --git a/Cargo.toml b/Cargo.toml index 13fa2b0..c06e6f8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "search-sessions" -version = "0.2.0" +version = "0.3.0" edition = "2024" description = "Fast CLI to search across Claude Code and OpenClaw session history" license = "MIT"