mirror of
https://github.com/sharkdp/hyperfine.git
synced 2024-11-25 19:19:31 +03:00
Bump version to v1.13.0
This commit is contained in:
parent
f1557d47fb
commit
5c676a9626
23
CHANGELOG.md
23
CHANGELOG.md
@ -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
2
Cargo.lock
generated
@ -253,7 +253,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "hyperfine"
|
||||
version = "1.12.0"
|
||||
version = "1.13.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"approx",
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user