Skip to content

Commit 14aa618

Browse files
committed
Release v0.1.2
1 parent 7d76bc3 commit 14aa618

File tree

5 files changed

+9
-6
lines changed

5 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.2] - 2023-10-28
12+
1113
### Fixed
1214

1315
- Multi-threaded benchmarks being spread across CPUs, instead of pinning the
@@ -28,5 +30,6 @@ Initial release. See [blog post](https://nikolaivazquez.com/blog/divan/).
2830
[crate]: https://crates.io/crates/divan
2931
[crate-badge]: https://img.shields.io/crates/v/divan.svg
3032

31-
[Unreleased]: https://github.com/nvzqz/divan/compare/v0.1.1...HEAD
33+
[Unreleased]: https://github.com/nvzqz/divan/compare/v0.1.2...HEAD
34+
[0.1.2]: https://github.com/nvzqz/divan/compare/v0.1.1...v0.1.2
3235
[0.1.1]: https://github.com/nvzqz/divan/compare/v0.1.0...v0.1.1

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.1"
3+
version = "0.1.2"
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.1", path = "macros" }
16+
divan-macros = { version = "0.1.2", path = "macros" }
1717

1818
clap = { version = "4", default-features = false, features = ["std", "env"] }
1919
condtype = "1.3"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
```toml
2626
[dev-dependencies]
27-
divan = "0.1.1"
27+
divan = "0.1.2"
2828

2929
[[bench]]
3030
name = "example"

examples/Cargo.toml

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

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.1"
3+
version = "0.1.2"
44
edition = "2021"
55
authors = ["Nikolai Vazquez"]
66
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)