diff --git a/CHANGELOG.md b/CHANGELOG.md index 551d480..6c16e0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ after version 1.0.0. ## [Unreleased] +## [0.0.8] - 2022-12-21 +* Remove debug print - thanks to J-F-Liu, Ralith +* Fixed discriminant check in quartic equations - thanks to jingnanshi +* Allowed mutable closures for secant etc. - thanks to vron + ## [0.0.7] - 2021-06-17 * SearchError becomes public - thanks to JP-Ellis * Unnormalized cubic equations are solved using the general formula rather than trigonometrically - thanks to Logicalshift @@ -37,7 +42,8 @@ after version 1.0.0. ## [0.0.1] - 2015-03-24 * Initial version -[Unreleased]: /~https://github.com/vorot/roots/compare/v0.0.7...HEAD +[Unreleased]: /~https://github.com/vorot/roots/compare/v0.0.8...HEAD +[0.0.8]: /~https://github.com/vorot/roots/compare/v0.0.7...v0.0.8 [0.0.7]: /~https://github.com/vorot/roots/compare/v0.0.6...v0.0.7 [0.0.6]: /~https://github.com/vorot/roots/compare/v0.0.5...v0.0.6 [0.0.5]: /~https://github.com/vorot/roots/compare/v0.0.4...v0.0.5 diff --git a/Cargo.toml b/Cargo.toml index 68f34f4..28d4875 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "roots" -version = "0.0.7" +version = "0.0.8" authors = ["Mikhail Vorotilov "] license = "BSD-2-Clause" repository = "/~https://github.com/vorot/roots"