From 4d6d69a9f56744f89d6143f928074dbd47d0512b Mon Sep 17 00:00:00 2001 From: Brook Heisler Date: Sat, 10 Sep 2022 11:46:34 -0600 Subject: [PATCH] Increment version numbers. --- CHANGELOG.md | 7 ++++--- Cargo.toml | 4 ++-- bencher_compat/Cargo.toml | 4 ++-- macro/Cargo.toml | 4 ++-- plot/Cargo.toml | 2 +- 5 files changed, 11 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b76ba96..939bc4ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] -## [0.4.0] - IN DEVELOPMENT +## [0.4.0] - 2022-09-10 ### Removed @@ -504,7 +504,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Initial release on Crates.io. -[Unreleased]: https://github.com/bheisler/criterion.rs/compare/0.3.6...HEAD +[Unreleased]: https://github.com/bheisler/criterion.rs/compare/0.4.0...HEAD [0.1.1]: https://github.com/bheisler/criterion.rs/compare/0.1.0...0.1.1 [0.1.2]: https://github.com/bheisler/criterion.rs/compare/0.1.1...0.1.2 [0.2.0]: https://github.com/bheisler/criterion.rs/compare/0.1.2...0.2.0 @@ -525,4 +525,5 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. [0.3.3]: https://github.com/bheisler/criterion.rs/compare/0.3.2...0.3.3 [0.3.4]: https://github.com/bheisler/criterion.rs/compare/0.3.3...0.3.4 [0.3.5]: https://github.com/bheisler/criterion.rs/compare/0.3.4...0.3.5 -[0.3.5]: https://github.com/bheisler/criterion.rs/compare/0.3.5...0.3.6 \ No newline at end of file +[0.3.6]: https://github.com/bheisler/criterion.rs/compare/0.3.5...0.3.6 +[0.4.0]: https://github.com/bheisler/criterion.rs/compare/0.3.6...0.4.0 \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index 6470b962..c0adc3f9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ authors = [ "Brook Heisler ", ] name = "criterion" -version = "0.3.6" +version = "0.4.0" edition = "2018" description = "Statistics-driven micro-benchmarking library" @@ -19,7 +19,7 @@ exclude = ["book/*"] [dependencies] anes = "0.1.4" lazy_static = "1.4" -criterion-plot = { path = "plot", version = "0.4.5" } +criterion-plot = { path = "plot", version = "0.5.0" } itertools = "0.10" serde = "1.0" serde_json = "1.0" diff --git a/bencher_compat/Cargo.toml b/bencher_compat/Cargo.toml index c4823f3d..c901ca72 100644 --- a/bencher_compat/Cargo.toml +++ b/bencher_compat/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "criterion_bencher_compat" -version = "0.3.4" +version = "0.4.0" authors = ["Brook Heisler "] edition = "2018" @@ -13,7 +13,7 @@ categories = ["development-tools::profiling"] license = "Apache-2.0/MIT" [dependencies] -criterion = { version = "0.3.4", path = "..", default-features = false } +criterion = { version = "0.4.0", path = "..", default-features = false } [features] real_blackbox = ["criterion/real_blackbox"] diff --git a/macro/Cargo.toml b/macro/Cargo.toml index accd2387..b8adf2d4 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "criterion-macro" -version = "0.3.4" +version = "0.4.0" authors = ["Brook Heisler "] edition = "2018" @@ -20,7 +20,7 @@ proc-macro2 = { version = "1.0", features = ["nightly"] } quote = "1.0" [dev-dependencies] -criterion = { version = "0.3.4", path = "..", default-features = false } +criterion = { version = "0.4.0", path = "..", default-features = false } [[bench]] name = "test_macro_bench" diff --git a/plot/Cargo.toml b/plot/Cargo.toml index d7e78e0a..a1ce36eb 100644 --- a/plot/Cargo.toml +++ b/plot/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Jorge Aparicio ", "Brook Heisler "] name = "criterion-plot" -version = "0.4.5" +version = "0.5.0" edition = "2018" description = "Criterion's plotting library"