From e86e14b88c286b3dee99560172ad1f00b38dbcfd Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Tue, 3 Sep 2019 12:21:57 -0700 Subject: [PATCH] Release 0.2.3 --- Cargo.toml | 2 +- RELEASES.md | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f651aa78..ab414a1d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ categories = [ "algorithms", "data-structures", "science" ] license = "MIT/Apache-2.0" name = "num-bigint" repository = "https://github.com/rust-num/num-bigint" -version = "0.2.2" +version = "0.2.3" readme = "README.md" build = "build.rs" diff --git a/RELEASES.md b/RELEASES.md index 80962111..911dd783 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,3 +1,16 @@ +# Release 0.2.3 (2019-09-03) + +- [`Pow` is now implemented for `BigUint` exponents][77]. +- [The optional `quickcheck` feature enables implementations of `Arbitrary`][99]. +- See the [full comparison][compare-0.2.3] for performance enhancements and more! + +[77]: https://github.com/rust-num/num-bigint/pull/77 +[99]: https://github.com/rust-num/num-bigint/pull/99 +[compare-0.2.3]: https://github.com/rust-num/num-bigint/compare/num-bigint-0.2.2...num-bigint-0.2.3 + +**Contributors**: @cuviper, @lcnr, @maxbla, @mikelodder7, @mikong, +@TheLetterTheta, @tspiteri, @XAMPPRocky, @youknowone + # Release 0.2.2 (2018-12-14) - [The `Roots` implementations now use better initial guesses][71].