Skip to content

Commit 52f9d49

Browse files
committed
Release v0.1.21
1 parent 5afb095 commit 52f9d49

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ Versioning](http://semver.org/spec/v2.0.0.html).
88

99
## [Unreleased]
1010

11+
## [0.1.21] - 2025-04-09
12+
1113
### Fixed
1214

1315
- `Divan::skip_exact` behaved incorrectly in `v0.1.19`.
@@ -376,7 +378,8 @@ Initial release. See [blog post](https://nikolaivazquez.com/blog/divan/).
376378
[crate]: https://crates.io/crates/divan
377379
[crate-badge]: https://img.shields.io/crates/v/divan.svg
378380

379-
[Unreleased]: https://github.com/nvzqz/divan/compare/v0.1.20...HEAD
381+
[Unreleased]: https://github.com/nvzqz/divan/compare/v0.1.21...HEAD
382+
[0.1.21]: https://github.com/nvzqz/divan/compare/v0.1.20...v0.1.21
380383
[0.1.20]: https://github.com/nvzqz/divan/compare/v0.1.19...v0.1.20
381384
[0.1.19]: https://github.com/nvzqz/divan/compare/v0.1.18...v0.1.19
382385
[0.1.18]: https://github.com/nvzqz/divan/compare/v0.1.17...v0.1.18

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "divan"
3-
version = "0.1.20"
3+
version = "0.1.21"
44
rust-version = "1.80.0"
55
edition = "2021"
66
authors = ["Nikolai Vazquez"]
@@ -14,7 +14,7 @@ keywords = ["benchmark", "criterion", "instrument", "measure", "performance"]
1414
readme = "README.md"
1515

1616
[dependencies]
17-
divan-macros = { version = "=0.1.20", path = "macros" }
17+
divan-macros = { version = "=0.1.21", path = "macros" }
1818

1919
cfg-if = "1"
2020
clap = { version = "4", default-features = false, features = ["std", "env"] }

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ A guide is being worked on. In the meantime, see:
3333

3434
## Getting Started
3535

36-
Divan `0.1.20` requires Rust `1.80.0` or later.
36+
Divan `0.1.21` requires Rust `1.80.0` or later.
3737

3838
1. Add the following to your project's [`Cargo.toml`](https://doc.rust-lang.org/cargo/reference/manifest.html):
3939

4040
```toml
4141
[dev-dependencies]
42-
divan = "0.1.20"
42+
divan = "0.1.21"
4343

4444
[[bench]]
4545
name = "example"

macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "divan-macros"
3-
version = "0.1.20"
3+
version = "0.1.21"
44
edition = "2021"
55
authors = ["Nikolai Vazquez"]
66
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)