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 }