diff --git a/CHANGELOG.md b/CHANGELOG.md index 144a292..1a7e3dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,24 @@ ## Features +## Changes + +## Bugfixes + +## Other + +## Packaging + + + +# v1.12.0 + +## Features + - `--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) -- Export command exit code to JSON output, see #371 (@JordiChauzi) +- Exit codes (or signals) are now printed in cases of command failures, see #342 (@KaindlJulian) +- 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 @@ -13,14 +28,7 @@ - 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). - Reduce number of shell startup time measurements from 200 to 50, generally speeding up benchmarks. See #378 - -## Bugfixes - -- User and system time should be in consistent time units, see #408 and #409 (@film42) - -## Other - -## Packaging +- User and system time are now in consistent time units, see #408 and #409 (@film42) diff --git a/Cargo.lock b/Cargo.lock index 62869fc..29408fb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -228,7 +228,7 @@ dependencies = [ [[package]] name = "hyperfine" -version = "1.11.0" +version = "1.12.0" dependencies = [ "approx", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index 8ce5e00..1bdb96a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ license = "MIT/Apache-2.0" name = "hyperfine" readme = "README.md" repository = "https://github.com/sharkdp/hyperfine" -version = "1.11.0" +version = "1.12.0" edition = "2018" build = "build.rs" diff --git a/README.md b/README.md index 389a1aa..8e32308 100644 --- a/README.md +++ b/README.md @@ -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.11.0/hyperfine_1.11.0_amd64.deb -sudo dpkg -i 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.12.0_amd64.deb ``` ### On Fedora