From 269ce754a46383457a9bca5ad31e4dace89ad005 Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Mon, 10 Jun 2019 16:32:19 -0700 Subject: [PATCH] Release 0.2.2 --- Cargo.toml | 2 +- RELEASES.md | 17 +++++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 3dca65a..e1b1a95 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ categories = ["algorithms", "data-structures", "science", "no-std"] license = "MIT/Apache-2.0" name = "num-complex" repository = "https://github.com/rust-num/num-complex" -version = "0.2.1" +version = "0.2.2" readme = "README.md" build = "build.rs" exclude = ["/ci/*", "/.travis.yml", "/bors.toml"] diff --git a/RELEASES.md b/RELEASES.md index 736212a..de4d47b 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,3 +1,20 @@ +# Release 0.2.2 (2019-06-10) + +- [`Complex::l1_norm()` computes the Manhattan distance from the origin][43]. +- [`Complex::fdiv()` and `finv()` use floating-point for inversion][41], which + may avoid overflows for some inputs, at the cost of trigonometric rounding. +- [`Complex` now implements `num_traits::MulAdd` and `MulAddAssign`][44]. +- [`Complex` now implements `Zero::set_zero` and `One::set_one`][57]. +- [`Complex` now implements `num_traits::Pow` and adds `powi` and `powu`][56]. + +**Contributors**: @adamnemecek, @cuviper, @ignatenkobrain, @Schultzer + +[41]: https://github.com/rust-num/num-complex/pull/41 +[43]: https://github.com/rust-num/num-complex/pull/43 +[44]: https://github.com/rust-num/num-complex/pull/44 +[56]: https://github.com/rust-num/num-complex/pull/56 +[57]: https://github.com/rust-num/num-complex/pull/57 + # Release 0.2.1 (2018-10-08) - [`Complex` now implements `ToPrimitive`, `FromPrimitive`, `AsPrimitive`, and `NumCast`][33].