From 59c78ce05cf348e23c975255517efd2265e4034c Mon Sep 17 00:00:00 2001 From: Nicolas Barrios Date: Sat, 13 May 2023 18:38:27 -0400 Subject: [PATCH 1/5] Correct CHANGELOG mistake from #665 Misplaced the MSRV bump changelog update --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f1eadd7..939bc4ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,7 +20,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - HTML report hidden behind non-default feature flag: 'html_reports' - Standalone support (ie without cargo-criterion) feature flag: 'cargo_bench_support' -- MSRV bumped to 1.60 +- MSRV bumped to 1.57 - `rayon` and `plotters` are optional (and default) dependencies. - Status messages ('warming up', 'analyzing', etc) are printed to stderr, benchmark results are printed to stdout. - Accept subsecond durations for `--warm-up-time`, `--measurement-time` and `--profile-time`. From 3b9d14db2ead4edceaa9dd9573533ee4d3632d20 Mon Sep 17 00:00:00 2001 From: Nicolas Barrios Date: Sat, 13 May 2023 18:39:31 -0400 Subject: [PATCH 2/5] Add post v0.4 updates to the CHANGELOG Used prior updates as a basis for what changes to include and phrasing. --- CHANGELOG.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 939bc4ea..546176bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +### Changed +- Replaced lazy_static dependency with once_cell +- Improved documentation of the `html_reports` feature +- Replaced atty dependency with is-terminal +- (WIP, waiting on #679) MSRV bumped to 1.64 +- (WIP, waiting on #679) Upgraded clap dependency to v4 + +### Fixed +- Quick mode (`--quick`) no longer outputs 1ms for measured times over 5 seconds +- Documentation updates + ## [0.4.0] - 2022-09-10 ### Removed From 2db34775e1bf655d1bfacbd01e7b0445f9653e47 Mon Sep 17 00:00:00 2001 From: Nicolas Barrios Date: Wed, 17 May 2023 15:34:29 -0400 Subject: [PATCH 3/5] #679 merged --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 546176bd..9edfcf20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,8 +11,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Replaced lazy_static dependency with once_cell - Improved documentation of the `html_reports` feature - Replaced atty dependency with is-terminal -- (WIP, waiting on #679) MSRV bumped to 1.64 -- (WIP, waiting on #679) Upgraded clap dependency to v4 +- MSRV bumped to 1.64 +- Upgraded clap dependency to v4 ### Fixed - Quick mode (`--quick`) no longer outputs 1ms for measured times over 5 seconds From e1dcd6f4f40d54d5f1113ae10fac68403870e0d0 Mon Sep 17 00:00:00 2001 From: Nicolas Barrios Date: Wed, 17 May 2023 15:36:03 -0400 Subject: [PATCH 4/5] Major version bump, release date TBD --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9edfcf20..49fd29e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [0.5.0] - 2023-05-XX + ### Changed - Replaced lazy_static dependency with once_cell - Improved documentation of the `html_reports` feature From 7366cc1180569475608298c27cbc3afcaf02b518 Mon Sep 17 00:00:00 2001 From: Nicolas Barrios Date: Wed, 17 May 2023 15:37:19 -0400 Subject: [PATCH 5/5] tempfile dep update --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 49fd29e0..6ad510f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Replaced atty dependency with is-terminal - MSRV bumped to 1.64 - Upgraded clap dependency to v4 +- Upgraded tempfile dependency to v3.5.0 ### Fixed - Quick mode (`--quick`) no longer outputs 1ms for measured times over 5 seconds