diff --git a/CHANGELOG.md b/CHANGELOG.md index a961755dd..7f5946358 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,21 +1,12 @@ -# unreleased +# v1.14.0 ## Features +- Add a new `--output={null,pipe,inherit,}` option to control + where the output of the benchmarked program is redirected (if at all), + see #377 and #509 (@tavianator, originally suggested by @BurntSushi) - Add Emacs org-mode as a new export format, see #491 (@ppaulweber) -## Changes - - -## Bugfixes - - -## Other - - -## Packaging - - # v1.13.0 diff --git a/Cargo.lock b/Cargo.lock index fc166318f..02dbc6a36 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -262,7 +262,7 @@ dependencies = [ [[package]] name = "hyperfine" -version = "1.13.0" +version = "1.14.0" dependencies = [ "anyhow", "approx", diff --git a/Cargo.toml b/Cargo.toml index 8596faef8..ed5a0c512 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.13.0" +version = "1.14.0" edition = "2018" build = "build.rs"