From d7d7b195b7d81b8a65bd76f4e7d44a80ad84df83 Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Thu, 11 Jun 2020 16:46:59 -0700 Subject: [PATCH] Release 0.1.43 --- Cargo.toml | 2 +- RELEASES.md | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 1011dfb..9feed18 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ categories = ["algorithms", "science", "no-std"] license = "MIT/Apache-2.0" repository = "https://github.com/rust-num/num-integer" name = "num-integer" -version = "0.1.42" +version = "0.1.43" readme = "README.md" build = "build.rs" exclude = ["/bors.toml", "/ci/*", "/.github/*"] diff --git a/RELEASES.md b/RELEASES.md index 8aed55c..7273696 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,3 +1,12 @@ +# Release 0.1.43 (2020-06-11) + +- [The new `Average` trait][31] computes fast integer averages, rounded up or + down, without any risk of overflow. + +**Contributors**: @althonos, @cuviper + +[31]: https://github.com/rust-num/num-integer/pull/31 + # Release 0.1.42 (2020-01-09) - [Updated the `autocfg` build dependency to 1.0][29].