diff --git a/CHANGELOG.md b/CHANGELOG.md index 29d419a..c6016d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [0.7.1](https://github.com/Boshen/criterion2.rs/compare/v0.7.0...v0.7.1) - 2024-04-06 + +### Added +- allow async setup for async bencher ([#6](https://github.com/Boshen/criterion2.rs/pull/6)) - MSRV bumped to 1.70 ## [0.5.1] - 2023-05-26 diff --git a/Cargo.lock b/Cargo.lock index 333d781..efe60bb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -389,7 +389,7 @@ dependencies = [ [[package]] name = "criterion2" -version = "0.7.0" +version = "0.7.1" dependencies = [ "anes", "approx", diff --git a/Cargo.toml b/Cargo.toml index 6ea0e57..8876c62 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "criterion2" -version = "0.7.0" # When bumping: * Update version numbers in the book; +version = "0.7.1" authors = [ "Boshen ", "Jorge Aparicio ",