Skip to content

Commit b932cdd

Browse files
committed
Release v0.1.1
1 parent 93136bc commit b932cdd

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.1] - 2023-10-25
12+
1113
### Fixed
1214

1315
- Fix using LLD as linker for Linux by using the same pre-`main` approach as
@@ -20,4 +22,5 @@ Initial release. See [blog post](https://nikolaivazquez.com/blog/divan/).
2022
[crate]: https://crates.io/crates/divan
2123
[crate-badge]: https://img.shields.io/crates/v/divan.svg
2224

23-
[Unreleased]: https://github.com/nvzqz/divan/compare/v0.1.0...HEAD
25+
[Unreleased]: https://github.com/nvzqz/divan/compare/v0.1.1...HEAD
26+
[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.0"
3+
version = "0.1.1"
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.0", path = "macros" }
16+
divan-macros = { version = "0.1.1", 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.0"
27+
divan = "0.1.1"
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.0"
3+
version = "0.1.1"
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.0"
3+
version = "0.1.1"
44
edition = "2021"
55
authors = ["Nikolai Vazquez"]
66
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)