From d447a53c62a950307e1d1515a79c2f1a7f119fde Mon Sep 17 00:00:00 2001 From: "Xinyao (Morry) Niu" Date: Wed, 22 Jul 2026 21:05:15 +0800 Subject: [PATCH] chore: release v0.6.2 Synchronize the fmtview, fmtview-core, Cargo.lock, and npm package versions at 0.6.2. Move the tail-first follow attachment fix into dated 0.6.2 release notes while retaining the Unreleased section for subsequent changes. --- CHANGELOG.md | 2 ++ Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- crates/fmtview-core/Cargo.toml | 2 +- npm/fmtview/package.json | 2 +- 5 files changed, 8 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c9c5512..fc504f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ for GitHub Release notes, so every published version must have a matching ## [Unreleased] +## [0.6.2] - 2026-07-22 + ### Fixed - Keep tail-first follow views attached when pretty-printed JSON breadcrumbs diff --git a/Cargo.lock b/Cargo.lock index 89009e6..a4cb907 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -341,7 +341,7 @@ dependencies = [ [[package]] name = "fmtview" -version = "0.6.1" +version = "0.6.2" dependencies = [ "anyhow", "assert_cmd", @@ -355,7 +355,7 @@ dependencies = [ [[package]] name = "fmtview-core" -version = "0.6.1" +version = "0.6.2" dependencies = [ "anyhow", "memchr", diff --git a/Cargo.toml b/Cargo.toml index 88d1e74..4936075 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ resolver = "3" [package] name = "fmtview" -version = "0.6.1" +version = "0.6.2" 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" @@ -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.1", path = "crates/fmtview-core" } +fmtview-core = { version = "0.6.2", path = "crates/fmtview-core" } ratatui = { version = "0.30.0", default-features = false, features = ["crossterm"] } tempfile = "3.27.0" diff --git a/crates/fmtview-core/Cargo.toml b/crates/fmtview-core/Cargo.toml index 220cf38..6a964a4 100644 --- a/crates/fmtview-core/Cargo.toml +++ b/crates/fmtview-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fmtview-core" -version = "0.6.1" +version = "0.6.2" edition = "2024" rust-version = "1.85" description = "Headless viewer engine for fmtview" diff --git a/npm/fmtview/package.json b/npm/fmtview/package.json index 1805206..1fe6d4b 100644 --- a/npm/fmtview/package.json +++ b/npm/fmtview/package.json @@ -1,6 +1,6 @@ { "name": "fmtview", - "version": "0.6.1", + "version": "0.6.2", "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",