summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Peter <mail@david-peter.de>2022-11-01 20:55:25 +0100
committerDavid Peter <mail@david-peter.de>2022-11-01 20:55:25 +0100
commitf8e832f212877023f6fa7d0b7b1bc561d582beb6 (patch)
treefbc08c082fd859ff902e6b52073ac465bec74c65
parentbc94fcc90f6e97de519a416ad15c090d2533bd64 (diff)
Preparation for v8.5
-rw-r--r--CHANGELOG.md4
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--README.md4
4 files changed, 7 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ba7c9c9..3f24f68 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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
diff --git a/Cargo.lock b/Cargo.lock
index 80c9b24..261e2f1 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -308,7 +308,7 @@ dependencies = [
[[package]]
name = "fd-find"
-version = "8.4.0"
+version = "8.5.0"
dependencies = [
"ansi_term",
"anyhow",
diff --git a/Cargo.toml b/Cargo.toml
index a75a005..6e88966 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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]
diff --git a/README.md b/README.md
index c2c4b3d..793f881 100644
--- a/README.md
+++ b/README.md
@@ -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.