From 1a9b1d4e6034d8e77b29ff10f6eb7e2f0934ace1 Mon Sep 17 00:00:00 2001 From: Nikolai Vazquez Date: Wed, 13 Dec 2023 10:35:11 -0500 Subject: [PATCH] Release v0.1.7 --- CHANGELOG.md | 5 ++++- Cargo.toml | 4 ++-- README.md | 2 +- macros/Cargo.toml | 2 +- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a31be3d..da226ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ Versioning](http://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [0.1.7] - 2023-12-13 + ### Changes - Improve [`AllocProfiler`] implementation documentation. @@ -161,7 +163,8 @@ Initial release. See [blog post](https://nikolaivazquez.com/blog/divan/). [crate]: https://crates.io/crates/divan [crate-badge]: https://img.shields.io/crates/v/divan.svg -[Unreleased]: https://github.com/nvzqz/divan/compare/v0.1.6...HEAD +[Unreleased]: https://github.com/nvzqz/divan/compare/v0.1.7...HEAD +[0.1.7]: https://github.com/nvzqz/divan/compare/v0.1.6...v0.1.7 [0.1.6]: https://github.com/nvzqz/divan/compare/v0.1.5...v0.1.6 [0.1.5]: https://github.com/nvzqz/divan/compare/v0.1.4...v0.1.5 [0.1.4]: https://github.com/nvzqz/divan/compare/v0.1.3...v0.1.4 diff --git a/Cargo.toml b/Cargo.toml index 4b2c611..7a401ad 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "divan" -version = "0.1.6" +version = "0.1.7" edition = "2021" authors = ["Nikolai Vazquez"] license = "MIT OR Apache-2.0" @@ -13,7 +13,7 @@ keywords = ["benchmark", "criterion", "instrument", "measure", "performance"] readme = "README.md" [dependencies] -divan-macros = { version = "0.1.6", path = "macros" } +divan-macros = { version = "0.1.7", path = "macros" } cfg-if = "1" clap = { version = "4", default-features = false, features = ["std", "env"] } diff --git a/README.md b/README.md index 5933be8..5f09399 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ A guide is being worked on. In the meantime, [see announcement post](https://nik ```toml [dev-dependencies] - divan = "0.1.6" + divan = "0.1.7" [[bench]] name = "example" diff --git a/macros/Cargo.toml b/macros/Cargo.toml index bb84b34..ff118c3 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "divan-macros" -version = "0.1.6" +version = "0.1.7" edition = "2021" authors = ["Nikolai Vazquez"] license = "MIT OR Apache-2.0"