diff --git a/CHANGELOG.md b/CHANGELOG.md index 301dedc..5bf7bec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,17 @@ +# v1.18.0 + +## Features + +- Add support for microseconds via `--time-unit microsecond`, see #684 (@sharkdp) + +## Bugfixes + +- Proper argument quoting on Windows CMD, see #296 and #678 (@PedroWitzel) + + # v1.17.0 ## Features diff --git a/Cargo.lock b/Cargo.lock index 404076c..4f3ffb6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -486,7 +486,7 @@ checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" [[package]] name = "hyperfine" -version = "1.17.0" +version = "1.18.0" dependencies = [ "anyhow", "approx", diff --git a/Cargo.toml b/Cargo.toml index ea28c17..245304e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0" name = "hyperfine" readme = "README.md" repository = "https://github.com/sharkdp/hyperfine" -version = "1.17.0" +version = "1.18.0" edition = "2018" build = "build.rs" rust-version = "1.66.0"