Bump version to v1.13.0

This commit is contained in:
David Peter 2022-03-05 12:10:38 +01:00
parent f1557d47fb
commit 5c676a9626
4 changed files with 23 additions and 10 deletions

View File

@ -2,6 +2,24 @@
## Features
## Changes
## Bugfixes
## Other
## Packaging
# v1.13.0
## Features
- Added a new `--shell=none`/`-N` option to disable the intermediate
shell for executing the benchmarked commands. Hyperfine normally
measures and subtracts the shell spawning time, but the intermediate
@ -21,16 +39,11 @@
- The environment offset randomization is now also available on Windows,
see #484
## Bugfixes
## Other
- Improved documentation and test coverage, cleaned up code base for
future improvements.
## Packaging
# v1.12.0

2
Cargo.lock generated
View File

@ -253,7 +253,7 @@ dependencies = [
[[package]]
name = "hyperfine"
version = "1.12.0"
version = "1.13.0"
dependencies = [
"anyhow",
"approx",

View File

@ -7,7 +7,7 @@ license = "MIT/Apache-2.0"
name = "hyperfine"
readme = "README.md"
repository = "https://github.com/sharkdp/hyperfine"
version = "1.12.0"
version = "1.13.0"
edition = "2018"
build = "build.rs"
@ -45,7 +45,7 @@ tempfile = "3.3"
[build-dependencies]
clap = "3"
atty = "0.2"
clap_complete = "3.0"
clap_complete = "3"
[profile.release]
lto = true

View File

@ -120,8 +120,8 @@ The JSON output is useful if you want to analyze the benchmark results in more d
Download the appropriate `.deb` package from the [Release page](https://github.com/sharkdp/hyperfine/releases)
and install it via `dpkg`:
```
wget https://github.com/sharkdp/hyperfine/releases/download/v1.12.0/hyperfine_1.12.0_amd64.deb
sudo dpkg -i hyperfine_1.12.0_amd64.deb
wget https://github.com/sharkdp/hyperfine/releases/download/v1.13.0/hyperfine_1.13.0_amd64.deb
sudo dpkg -i hyperfine_1.13.0_amd64.deb
```
### On Fedora