Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ for GitHub Release notes, so every published version must have a matching

## [Unreleased]

## [0.6.1] - 2026-07-22

### Added

- Expose `fmtview::view` as a narrow public embedding facade for interactive
Expand All @@ -25,7 +27,9 @@ for GitHub Release notes, so every published version must have a matching
### Fixed

- Keep forward and backward search sessions aware of committed records appended
after the search began, including when repeating a completed miss.
after the search began, including when repeating a completed miss. Preserve
source ordering across lazy older loads, repeated backward appends, and short
timeline reads so active searches neither reorder matches nor skip records.

## [0.6.0] - 2026-07-22

Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ resolver = "3"

[package]
name = "fmtview"
version = "0.6.0"
version = "0.6.1"
edition = "2024"
rust-version = "1.85"
description = "Fast CLI viewer for highlighting, search, and diffs across JSON, JSONL, HTML/XML, Markdown, TOML, text, and Jinja"
Expand All @@ -20,7 +20,7 @@ exclude = [".github/", "npm/"]
anyhow = "1.0.102"
clap = { version = "4.6.1", features = ["derive"] }
crossterm = "0.29.0"
fmtview-core = { version = "0.6.0", path = "crates/fmtview-core" }
fmtview-core = { version = "0.6.1", path = "crates/fmtview-core" }
ratatui = { version = "0.30.0", default-features = false, features = ["crossterm"] }
tempfile = "3.27.0"

Expand Down
2 changes: 1 addition & 1 deletion crates/fmtview-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fmtview-core"
version = "0.6.0"
version = "0.6.1"
edition = "2024"
rust-version = "1.85"
description = "Headless viewer engine for fmtview"
Expand Down
2 changes: 1 addition & 1 deletion npm/fmtview/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fmtview",
"version": "0.6.0",
"version": "0.6.1",
"description": "Fast CLI viewer for highlighting, search, and diffs across JSON, JSONL, HTML/XML, Markdown, TOML, text, and Jinja",
"license": "MIT",
"homepage": "https://github.com/siriusctrl/fmtview#readme",
Expand Down