Skip to content

Commit

Permalink
Bump version numbers.
Browse files Browse the repository at this point in the history
  • Loading branch information
bheisler committed Apr 26, 2020
1 parent 9de9121 commit 76f7221
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 9 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [ 0.3.2] - 2020-04-26
### Added
- Added `?Sized` bound to benchmark parameter types, which allows dynamically sized types like
`&str` and `&[T]` to be used as benchmark parameters.
Expand Down Expand Up @@ -329,7 +331,7 @@ more details
- Initial release on Crates.io.


[Unreleased]: https://github.com/bheisler/criterion.rs/compare/0.3.1...HEAD
[Unreleased]: https://github.com/bheisler/criterion.rs/compare/0.3.2...HEAD
[0.1.1]: https://github.com/bheisler/criterion.rs/compare/0.1.0...0.1.1
[0.1.2]: https://github.com/bheisler/criterion.rs/compare/0.1.1...0.1.2
[0.2.0]: https://github.com/bheisler/criterion.rs/compare/0.1.2...0.2.0
Expand All @@ -345,4 +347,5 @@ more details
[0.2.10]: https://github.com/bheisler/criterion.rs/compare/0.2.9...0.2.10
[0.2.11]: https://github.com/bheisler/criterion.rs/compare/0.2.10...0.2.11
[0.3.0]: https://github.com/bheisler/criterion.rs/compare/0.2.11...0.3.0
[0.3.1]: https://github.com/bheisler/criterion.rs/compare/0.3.0...0.3.1
[0.3.1]: https://github.com/bheisler/criterion.rs/compare/0.3.0...0.3.1
[0.3.2]: https://github.com/bheisler/criterion.rs/compare/0.3.1...0.3.2
4 changes: 2 additions & 2 deletions Cargo.toml
@@ -1,7 +1,7 @@
[package]
authors = ["Jorge Aparicio <japaricious@gmail.com>", "Brook Heisler <brookheisler@gmail.com>"]
name = "criterion"
version = "0.3.1"
version = "0.3.2"
edition = "2018"

description = "Statistics-driven micro-benchmarking library"
Expand All @@ -15,7 +15,7 @@ exclude = ["book/*"]

[dependencies]
lazy_static = "1.4"
criterion-plot = { path="plot", version="0.4.1" }
criterion-plot = { path="plot", version="0.4.2" }
itertools = "0.9"
serde = "1.0"
serde_json = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions bencher_compat/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "criterion_bencher_compat"
version = "0.3.1"
version = "0.3.2"
authors = ["Brook Heisler <redattack34@gmail.com>"]
edition = "2018"

Expand All @@ -13,7 +13,7 @@ categories = ["development-tools::profiling"]
license = "Apache-2.0/MIT"

[dependencies]
criterion = { version = "0.3.1", path = "..", default-features = false }
criterion = { version = "0.3.2", path = "..", default-features = false }

[features]
real_blackbox = ["criterion/real_blackbox"]
Expand Down
4 changes: 2 additions & 2 deletions macro/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "criterion-macro"
version = "0.3.1"
version = "0.3.2"
authors = ["Brook Heisler <redattack34@gmail.com>"]
edition = "2018"

Expand All @@ -20,7 +20,7 @@ proc-macro2 = { version = "1.0", features = ["nightly"] }
quote = "1.0"

[dev-dependencies]
criterion = { version = "0.3.1", path = "..", default-features = false }
criterion = { version = "0.3.2", path = "..", default-features = false }

[[bench]]
name = "test_macro_bench"
Expand Down
2 changes: 1 addition & 1 deletion plot/Cargo.toml
@@ -1,7 +1,7 @@
[package]
authors = ["Jorge Aparicio <japaricious@gmail.com>", "Brook Heisler <brookheisler@gmail.com>"]
name = "criterion-plot"
version = "0.4.1"
version = "0.4.2"
edition = "2018"

description = "Criterion's plotting library"
Expand Down

0 comments on commit 76f7221

Please sign in to comment.