From e591be08305957b17d3f94e914c50b4bcf31e613 Mon Sep 17 00:00:00 2001 From: Nikolai Vazquez Date: Thu, 31 Oct 2024 23:54:28 -0400 Subject: [PATCH] Release v0.1.15 --- CHANGELOG.md | 6 ++++-- Cargo.toml | 4 ++-- README.md | 2 +- macros/Cargo.toml | 2 +- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cd4bf27..1e51178 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ Versioning](http://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [0.1.15] - 2024-10-31 + ### Added - [`CyclesCount`] counter to display cycle throughput as Hertz. @@ -308,8 +310,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.14...HEAD -[0.1.14]: https://github.com/nvzqz/divan/compare/v0.1.13...v0.1.14 +[Unreleased]: https://github.com/nvzqz/divan/compare/v0.1.15...HEAD +[0.1.15]: https://github.com/nvzqz/divan/compare/v0.1.13...v0.1.15 [0.1.13]: https://github.com/nvzqz/divan/compare/v0.1.12...v0.1.13 [0.1.12]: https://github.com/nvzqz/divan/compare/v0.1.11...v0.1.12 [0.1.11]: https://github.com/nvzqz/divan/compare/v0.1.10...v0.1.11 diff --git a/Cargo.toml b/Cargo.toml index b5021d0..d6ed73b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "divan" -version = "0.1.14" +version = "0.1.15" 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.14", path = "macros" } +divan-macros = { version = "=0.1.15", path = "macros" } cfg-if = "1" clap = { version = "4", default-features = false, features = ["std", "env"] } diff --git a/README.md b/README.md index 5693d1c..53ee1c1 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ A guide is being worked on. In the meantime, see: ```toml [dev-dependencies] - divan = "0.1.14" + divan = "0.1.15" [[bench]] name = "example" diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 1a38522..abe2be7 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "divan-macros" -version = "0.1.14" +version = "0.1.15" edition = "2021" authors = ["Nikolai Vazquez"] license = "MIT OR Apache-2.0"