From 899cd5ec6987259be42bc9a9efb8f29d6937a46b Mon Sep 17 00:00:00 2001 From: Nikolai Vazquez Date: Wed, 4 Dec 2024 20:07:29 -0500 Subject: [PATCH] Release v0.1.17 --- CHANGELOG.md | 5 ++++- Cargo.toml | 4 ++-- README.md | 4 ++-- macros/Cargo.toml | 2 +- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6caa82b..2147932 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ Versioning](http://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [0.1.17] - 2024-12-04 + ### Changed - Set [MSRV] to 1.80 for `size_of` [`LazyLock`] and new prelude imports. @@ -336,7 +338,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.16...HEAD +[Unreleased]: https://github.com/nvzqz/divan/compare/v0.1.17...HEAD +[0.1.17]: https://github.com/nvzqz/divan/compare/v0.1.16...v0.1.17 [0.1.16]: https://github.com/nvzqz/divan/compare/v0.1.15...v0.1.16 [0.1.15]: https://github.com/nvzqz/divan/compare/v0.1.14...v0.1.15 [0.1.14]: https://github.com/nvzqz/divan/compare/v0.1.13...v0.1.14 diff --git a/Cargo.toml b/Cargo.toml index c415945..c74f578 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "divan" -version = "0.1.16" +version = "0.1.17" rust-version = "1.80.0" edition = "2021" authors = ["Nikolai Vazquez"] @@ -14,7 +14,7 @@ keywords = ["benchmark", "criterion", "instrument", "measure", "performance"] readme = "README.md" [dependencies] -divan-macros = { version = "=0.1.16", path = "macros" } +divan-macros = { version = "=0.1.17", path = "macros" } cfg-if = "1" clap = { version = "4", default-features = false, features = ["std", "env"] } diff --git a/README.md b/README.md index c21ef6d..2675f8c 100644 --- a/README.md +++ b/README.md @@ -33,13 +33,13 @@ A guide is being worked on. In the meantime, see: ## Getting Started -This library requires Rust 1.80 or later. +Divan `0.1.17` requires Rust `1.80.0` or later. 1. Add the following to your project's [`Cargo.toml`](https://doc.rust-lang.org/cargo/reference/manifest.html): ```toml [dev-dependencies] - divan = "0.1.16" + divan = "0.1.17" [[bench]] name = "example" diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 0dac545..87087a0 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "divan-macros" -version = "0.1.16" +version = "0.1.17" edition = "2021" authors = ["Nikolai Vazquez"] license = "MIT OR Apache-2.0"