Skip to content

Commit

Permalink
Release v0.1.17
Browse files Browse the repository at this point in the history
  • Loading branch information
nvzqz committed Dec 5, 2024
1 parent d450e6d commit 899cd5e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand All @@ -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"] }
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 899cd5e

Please sign in to comment.