Skip to content

Commit 15f64c4

Browse files
committed
0.74.3
1 parent bd4efa2 commit 15f64c4

6 files changed

Lines changed: 8 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@ CHANGELOG
44
0.74.3
55
------
66
- Performance optimizations for non-ASCII input
7-
- A line holding any non-ASCII character is kept as a rune array, and the prefilter did not run on those lines, so every item went through the full score matrix
8-
- Queries are up to 16x faster, the gain growing with how much of the line is non-ASCII
7+
- ASCII queries are up to 16x faster
98
- Non-ASCII queries are up to 12x faster
10-
- Reading non-ASCII input is up to 37% faster and uses up to 29% less memory, the gain depending on how early the first non-ASCII character appears in the line
11-
- Accented Latin and fullwidth forms get the faster reading but not the faster queries, because those characters can still match their ASCII counterparts
9+
- Reading accented Latin input is up to 37% faster
10+
- Reading CJK input reduces memory use by up to 29%
1211
- ASCII input is unaffected
1312
- Fixed an image from a preview command being torn apart when its rows are separated by IND instead of newlines, as `chafa` does under tmux (#4885)
1413
- Fixed `replace-query` corrupting the item text when the query is edited afterwards

RELEASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ triggered by a tag push.
1818
2. Verify file consistency, sign the tag, and push the tag.
1919

2020
```sh
21-
make tag VERSION=0.74.2
21+
make tag VERSION=0.74.3
2222
```
2323

2424
`make tag` runs `prerelease` first (checks that the version

install

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -u
44

5-
version=0.74.2
5+
version=0.74.3
66
auto_completion=
77
key_bindings=
88
update_config=2

install.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$version="0.74.2"
1+
$version="0.74.3"
22

33
$fzf_base=Split-Path -Parent $MyInvocation.MyCommand.Definition
44

man/man1/fzf-tmux.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2121
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2222
THE SOFTWARE.
2323
..
24-
.TH fzf\-tmux 1 "Aug 2026" "fzf 0.74.2" "fzf\-tmux - open fzf in tmux split pane"
24+
.TH fzf\-tmux 1 "Aug 2026" "fzf 0.74.3" "fzf\-tmux - open fzf in tmux split pane"
2525

2626
.SH NAME
2727
fzf\-tmux - open fzf in tmux split pane

man/man1/fzf.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2121
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2222
THE SOFTWARE.
2323
..
24-
.TH fzf 1 "Aug 2026" "fzf 0.74.2" "fzf - a command-line fuzzy finder"
24+
.TH fzf 1 "Aug 2026" "fzf 0.74.3" "fzf - a command-line fuzzy finder"
2525

2626
.SH NAME
2727
fzf - a command-line fuzzy finder

0 commit comments

Comments
 (0)