From a8e1ef09891177ac5e68cf1cad5f632c39ea0227 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Sun, 8 Mar 2026 11:54:56 +0900 Subject: [PATCH] Add CHANGELOG.md entry for 0.70.1 --- CHANGELOG.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1793dc52..b80b98d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,17 @@ CHANGELOG ========= +0.70.1 +------ +- Performance improvements + - Replaced `[]Result` cache with bitmap cache (~86x less memory per cache entry) + - Raised `queryCacheMax` from `chunkSize/5` to `chunkSize/2` for broader cache coverage + - Replaced procFun map with fixed-size array for faster algo dispatch + - Replaced static chunk partitioning with a shared work queue in matcher + - Changed chunk size from 1000 to 1024 for clean 64-bit alignment +- Fixed AWK tokenizer not treating a new line character as whitespace +- Fixed `--{accept,with}-nth` removing trailing whitespaces with a non-default `--delimiter` + 0.70.0 ------ - Added `change-with-nth` action for dynamically changing the `--with-nth` option.