Skip to content

Commit 837d084

Browse files
committed
chore: upgrade min required num crate version to 0.4.2
1 parent 338d056 commit 837d084

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## [0.15.3] - 2024-05-12
4+
### Changed
5+
- `num` crate min required version is now `0.4.2`
6+
37
## [0.15.2] - 2024-04-28
48
### Added
59
- GenericFraction ConstOne and ConstZero trait implementations (special thanks to Raimundo Saona, aka @saona-raimundo)

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fraction"
3-
version = "0.15.2"
3+
version = "0.15.3"
44
authors = ["dnsl48 <[email protected]>"]
55

66
description = "Lossless fractions and decimals; drop-in float replacement"
@@ -27,7 +27,7 @@ opt-level = 3
2727

2828
[dependencies]
2929

30-
num = { version = "0.4", default-features = false }
30+
num = { version = "0.4.2", default-features = false }
3131

3232
byteorder = { version = "1", optional = true }
3333
bytes = { version = "1", optional = true }

0 commit comments

Comments
 (0)