mirror of
https://github.com/sharkdp/hyperfine.git
synced 2024-11-25 19:19:31 +03:00
Prepare release v1.12
This commit is contained in:
parent
58d3eada61
commit
93c16534c0
28
CHANGELOG.md
28
CHANGELOG.md
@ -2,9 +2,24 @@
|
|||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
|
## Changes
|
||||||
|
|
||||||
|
## Bugfixes
|
||||||
|
|
||||||
|
## Other
|
||||||
|
|
||||||
|
## Packaging
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# v1.12.0
|
||||||
|
|
||||||
|
## Features
|
||||||
|
|
||||||
- `--command-name` can now take parameter names from `--parameter-*` options, see #351 and #391 (@silathdiir)
|
- `--command-name` can now take parameter names from `--parameter-*` options, see #351 and #391 (@silathdiir)
|
||||||
- Add command exit code to output if it fails, see #342 (@KaindlJulian)
|
- Exit codes (or signals) are now printed in cases of command failures, see #342 (@KaindlJulian)
|
||||||
- Export command exit code to JSON output, see #371 (@JordiChauzi)
|
- Exit codes are now part of the JSON output, see #371 (@JordiChauzi)
|
||||||
|
- Colorized output should now be enabled on Windows by default, see #427
|
||||||
|
|
||||||
## Changes
|
## Changes
|
||||||
|
|
||||||
@ -13,14 +28,7 @@
|
|||||||
- When `--export-*` options are used, result files are written after each individual
|
- When `--export-*` options are used, result files are written after each individual
|
||||||
benchmark command instead of writing after all benchmarks have finished. See #306 (@s1ck).
|
benchmark command instead of writing after all benchmarks have finished. See #306 (@s1ck).
|
||||||
- Reduce number of shell startup time measurements from 200 to 50, generally speeding up benchmarks. See #378
|
- Reduce number of shell startup time measurements from 200 to 50, generally speeding up benchmarks. See #378
|
||||||
|
- User and system time are now in consistent time units, see #408 and #409 (@film42)
|
||||||
## Bugfixes
|
|
||||||
|
|
||||||
- User and system time should be in consistent time units, see #408 and #409 (@film42)
|
|
||||||
|
|
||||||
## Other
|
|
||||||
|
|
||||||
## Packaging
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -228,7 +228,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "hyperfine"
|
name = "hyperfine"
|
||||||
version = "1.11.0"
|
version = "1.12.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"approx",
|
"approx",
|
||||||
"assert_cmd",
|
"assert_cmd",
|
||||||
|
@ -7,7 +7,7 @@ license = "MIT/Apache-2.0"
|
|||||||
name = "hyperfine"
|
name = "hyperfine"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/sharkdp/hyperfine"
|
repository = "https://github.com/sharkdp/hyperfine"
|
||||||
version = "1.11.0"
|
version = "1.12.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
||||||
|
@ -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)
|
Download the appropriate `.deb` package from the [Release page](https://github.com/sharkdp/hyperfine/releases)
|
||||||
and install it via `dpkg`:
|
and install it via `dpkg`:
|
||||||
```
|
```
|
||||||
wget https://github.com/sharkdp/hyperfine/releases/download/v1.11.0/hyperfine_1.11.0_amd64.deb
|
wget https://github.com/sharkdp/hyperfine/releases/download/v1.12.0/hyperfine_1.12.0_amd64.deb
|
||||||
sudo dpkg -i hyperfine_1.11.0_amd64.deb
|
sudo dpkg -i hyperfine_1.12.0_amd64.deb
|
||||||
```
|
```
|
||||||
|
|
||||||
### On Fedora
|
### On Fedora
|
||||||
|
Loading…
Reference in New Issue
Block a user