From bbb80f6c403caf0669070f6b5b3e38a796b9fc3c Mon Sep 17 00:00:00 2001 From: Serge Latyntcev Date: Wed, 27 Sep 2023 15:59:42 +1300 Subject: [PATCH] Release 0.14.0 --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) 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"