Skip to content

Commit e1d53ef

Browse files
committed
Release v0.1.11
1 parent 88ad85c commit e1d53ef

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

CHANGELOG.md

+4-1
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.11] - 2024-01-20
12+
1113
### Fixed
1214

1315
- Sorting negative [`args`] numbers.
@@ -237,7 +239,8 @@ Initial release. See [blog post](https://nikolaivazquez.com/blog/divan/).
237239
[crate]: https://crates.io/crates/divan
238240
[crate-badge]: https://img.shields.io/crates/v/divan.svg
239241

240-
[Unreleased]: https://github.com/nvzqz/divan/compare/v0.1.10...HEAD
242+
[Unreleased]: https://github.com/nvzqz/divan/compare/v0.1.11...HEAD
243+
[0.1.11]: https://github.com/nvzqz/divan/compare/v0.1.10...v0.1.11
241244
[0.1.10]: https://github.com/nvzqz/divan/compare/v0.1.9...v0.1.10
242245
[0.1.9]: https://github.com/nvzqz/divan/compare/v0.1.8...v0.1.9
243246
[0.1.8]: https://github.com/nvzqz/divan/compare/v0.1.7...v0.1.8

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "divan"
3-
version = "0.1.10"
3+
version = "0.1.11"
44
edition = "2021"
55
authors = ["Nikolai Vazquez"]
66
license = "MIT OR Apache-2.0"
@@ -13,7 +13,7 @@ keywords = ["benchmark", "criterion", "instrument", "measure", "performance"]
1313
readme = "README.md"
1414

1515
[dependencies]
16-
divan-macros = { version = "0.1.10", path = "macros" }
16+
divan-macros = { version = "0.1.11", path = "macros" }
1717

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

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ A guide is being worked on. In the meantime, [see announcement post](https://nik
2828

2929
```toml
3030
[dev-dependencies]
31-
divan = "0.1.10"
31+
divan = "0.1.11"
3232

3333
[[bench]]
3434
name = "example"

macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "divan-macros"
3-
version = "0.1.10"
3+
version = "0.1.11"
44
edition = "2021"
55
authors = ["Nikolai Vazquez"]
66
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)