diff --git a/CHANGELOG.md b/CHANGELOG.md index 565b097..a6f28f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ This file contains the changes to the crate since version 0.1.1. +## 1.0.8 + +- Fixed a bug where the principal branch functions would return NaN when given + infinite input. + ## 1.0.7 - Moved tests to their own file. diff --git a/Cargo.lock b/Cargo.lock index 56681f0..dbc29ee 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -235,7 +235,7 @@ dependencies = [ [[package]] name = "lambert_w" -version = "1.0.7" +version = "1.0.8" dependencies = [ "approx", "criterion", diff --git a/Cargo.toml b/Cargo.toml index fa1dd0b..4db0003 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lambert_w" -version = "1.0.7" +version = "1.0.8" edition = "2021" authors = ["Johanna Sörngård "] categories = ["mathematics", "no-std", "no-std::no-alloc"]