From 83b51000f54a938a127854c24a1c35dba005ec3e Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Tue, 11 Jun 2019 16:05:59 -0700 Subject: [PATCH] Release 0.2.3 --- Cargo.toml | 2 +- RELEASES.md | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index e1b1a95..6ae3872 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.2" +version = "0.2.3" readme = "README.md" build = "build.rs" exclude = ["/ci/*", "/.travis.yml", "/bors.toml"] diff --git a/RELEASES.md b/RELEASES.md index de4d47b..a5373e6 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,3 +1,13 @@ +# Release 0.2.3 (2019-06-11) + +- [`Complex::sqrt()` is now more accurate for negative reals][60]. +- [`Complex::cbrt()` computes the principal cube root][61]. + +**Contributors**: @cuviper + +[60]: https://github.com/rust-num/num-complex/pull/60 +[61]: https://github.com/rust-num/num-complex/pull/61 + # Release 0.2.2 (2019-06-10) - [`Complex::l1_norm()` computes the Manhattan distance from the origin][43].