Preparation for v8.5

This commit is contained in:
David Peter 2022-11-01 20:55:25 +01:00
parent bc94fcc90f
commit f8e832f212
4 changed files with 7 additions and 5 deletions

View File

@ -1,4 +1,4 @@
# Upcoming release
# v8.5.0
## Features
@ -25,6 +25,8 @@
- fd now colorizes paths in parallel, significantly improving performance, see #1148 (@tavianator)
- fd can now avoid `stat` syscalls even when colorizing paths, as long as the color scheme doesn't
require metadata, see #1148 (@tavianator)
- The statically linked `musl` versions of `fd` now use `jmalloc`, leading to a significant performance
improvement, see #1062 (@tavianator)
## Other

2
Cargo.lock generated
View File

@ -308,7 +308,7 @@ dependencies = [
[[package]]
name = "fd-find"
version = "8.4.0"
version = "8.5.0"
dependencies = [
"ansi_term",
"anyhow",

View File

@ -16,7 +16,7 @@ license = "MIT/Apache-2.0"
name = "fd-find"
readme = "README.md"
repository = "https://github.com/sharkdp/fd"
version = "8.4.0"
version = "8.5.0"
edition= "2021"
[badges.appveyor]

View File

@ -542,7 +542,7 @@ Make sure that `$HOME/.local/bin` is in your `$PATH`.
If you use an older version of Ubuntu, you can download the latest `.deb` package from the
[release page](https://github.com/sharkdp/fd/releases) and install it via:
``` bash
sudo dpkg -i fd_8.4.0_amd64.deb # adapt version number and architecture
sudo dpkg -i fd_8.5.0_amd64.deb # adapt version number and architecture
```
### On Debian
@ -676,7 +676,7 @@ With Rust's package manager [cargo](https://github.com/rust-lang/cargo), you can
```
cargo install fd-find
```
Note that rust version *1.57.0* or later is required.
Note that rust version *1.60.0* or later is required.
`make` is also needed for the build.