diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b8afcd7..f88209a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## [0.14.0] - 2023-09-27 +### Added + - `approx` module with "Approximate mathematical operations", `fn sqrt` (special thanks to @squ1dd13 for the contribution!) + - `with-approx` feature, enabling the `approx` module + + ## [0.13.1] - 2023-02-25 ### Added - Clippy hint to allow manual filtering in GenericFraction::to_i64 implementation diff --git a/Cargo.toml b/Cargo.toml index c751cbea..e7d2a172 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fraction" -version = "0.13.1" +version = "0.14.0" authors = ["dnsl48 "] description = "Lossless fractions and decimals; drop-in float replacement"