Compare commits

..

3 Commits

Author SHA1 Message Date
Thayne McCombs 92fab6e058 Prepare for 10.0.0 release 2024-05-05 23:52:50 -06:00
Thayne McCombs a0ee0856db Add @timestamp to --help 2024-05-05 23:52:50 -06:00
Thayne McCombs b8df500a70 Add script to automate some of release process. 2024-05-05 23:52:50 -06:00
4 changed files with 5 additions and 10 deletions

View File

@ -1,4 +1,4 @@
# 9.1.0
# v10.0.0
## Features
@ -14,7 +14,7 @@
- Respect NO_COLOR environment variable with `--list-details` option. (#1455)
- Fix bug that would cause hidden files to be included despite gitignore rules
if search path is "." (#1461, BurntSushi/ripgrep#2711).
- aarch64 builds now use 16k page sizes with jemalloc. This fixes issues on some systems, such as ARM Macs that
- aarch64 builds now use 64k page sizes with jemalloc. This fixes issues on some systems, such as ARM Macs that
have a larger system page size than the system that the binary was built on. (#1547)
- Address [CVE-2024-24576](https://blog.rust-lang.org/2024/04/09/cve-2024-24576.html), by increasing minimum rust version.
@ -23,11 +23,6 @@
- Minimum supported rust version is now 1.77.2
## Other
# v9.0.0
## Performance

2
Cargo.lock generated
View File

@ -308,7 +308,7 @@ checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a"
[[package]]
name = "fd-find"
version = "9.1.0"
version = "10.0.0"
dependencies = [
"aho-corasick",
"anyhow",

View File

@ -16,7 +16,7 @@ license = "MIT OR Apache-2.0"
name = "fd-find"
readme = "README.md"
repository = "https://github.com/sharkdp/fd"
version = "9.1.0"
version = "10.0.0"
edition= "2021"
rust-version = "1.77.2"

View File

@ -1,6 +1,6 @@
#!/usr/bin/bash
set -e
set -eu
# This script automates the "Version bump" section