From b4f32c14ab0d7bb6b8873eab900c5cf765a6adbc Mon Sep 17 00:00:00 2001 From: Serge Latyntsev Date: Sun, 12 May 2024 18:27:02 +1200 Subject: [PATCH] chore: upgrade min required num crate version to 0.4.2 --- CHANGELOG.md | 4 ++++ Cargo.toml | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 621921f4..7ef73054 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## [0.15.3] - 2024-05-12 +### Changed + - `num` crate min required version is now `0.4.2` + ## [0.15.2] - 2024-04-28 ### Added - GenericFraction ConstOne and ConstZero trait implementations (special thanks to Raimundo Saona, aka @saona-raimundo) diff --git a/Cargo.toml b/Cargo.toml index 9c36e36a..dcd228d3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fraction" -version = "0.15.2" +version = "0.15.3" authors = ["dnsl48 "] description = "Lossless fractions and decimals; drop-in float replacement" @@ -27,7 +27,7 @@ opt-level = 3 [dependencies] -num = { version = "0.4", default-features = false } +num = { version = "0.4.2", default-features = false } byteorder = { version = "1", optional = true } bytes = { version = "1", optional = true }