diff --git a/CHANGELOG.md b/CHANGELOG.md index afbc06d..3c8cac7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.3.59 + +- One command installs or updates rook: scripts/install.ps1 (Windows) and scripts/install.sh (Linux) fetch the latest release and swap the binary in place, handling a running rook.exe and unwritable locations. The startup update notice now prints the exact command for your platform, and the README leads with the one-liners. (#322) +- /sessions has two tabs: This directory (default) and All sessions, switched with Tab; rows on the All tab also name their folder, and type-to-filter works within the active tab. Sessions record the directory they were saved from. (#323) +- --continue and -c resume the newest session saved from the current directory instead of the newest anywhere. Sessions saved before this release have no recorded directory and appear only under All sessions. (#323) + ## 0.3.58 - The thinking indicator no longer appears to flash green during tool-heavy turns: a permanent spacer row separates it from the transcript's green tool bullets, and it is indented past their column, so nothing green ever sits in or beside the animation. diff --git a/rv.toml b/rv.toml index 83d41e1..203c306 100644 --- a/rv.toml +++ b/rv.toml @@ -1,6 +1,6 @@ [package] name = "rook" -version = "0.3.58" +version = "0.3.59" edition = "v2" [dependencies] diff --git a/src/version.rv b/src/version.rv index e5a9211..4c01d83 100644 --- a/src/version.rv +++ b/src/version.rv @@ -4,5 +4,5 @@ // version_test.rv: bump both together for a release or CI fails. fun version() -> String { - return "0.3.58" + return "0.3.59" }