diff --git a/CHANGELOG.md b/CHANGELOG.md index f394659..33f9774 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ This file contains the changes to the crate since version 0.4.8. +# 0.8.6 + + - Fixed a bug where the crate would try to sieve numbers below zero for some inputs to `sieve_lt` and `primes_lt` and panic. + # 0.8.5 - Add the `const_assert` feature that changes all panics that only involve const generics into compile errors. diff --git a/Cargo.toml b/Cargo.toml index fbf14db..4193bbc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "const-primes" authors = ["Johanna Sörngård "] -version = "0.8.5" +version = "0.8.6" edition = "2021" license = "MIT OR Apache-2.0" keywords = ["const", "primes", "no_std", "prime-numbers"]