diff --git a/.buildnumber b/.buildnumber index d802d84..b122d9b 100644 --- a/.buildnumber +++ b/.buildnumber @@ -1,3 +1,3 @@ 1 33 -0 +1 diff --git a/CHANGELOG.md b/CHANGELOG.md index a026c5c..a3591a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Version History +## 1.33.1 + +### Fixed + +* Fixes an issue when converting from a `Decimal` to a float whereby the float would be inaccurate after rounding. ([#625](https://github.com/paupino/rust-decimal/pull/625)) + ## 1.33.0 ### Fixed @@ -7,7 +13,6 @@ * Fixes an issue when adding/subtracting two `Decimal`s when one has a scale of 29. ([#619](https://github.com/paupino/rust-decimal/pull/619)) * An empty string will be parsed as `None` during JSON deserialization instead of panicking. ([#607](https://github.com/paupino/rust-decimal/pull/607)) - ### Changed * Upgrades `borsh` to version `1.1` as a result of a [security advisory](https://rustsec.org/advisories/RUSTSEC-2023-0033.html). ([#621](https://github.com/paupino/rust-decimal/pull/621)) diff --git a/Cargo.toml b/Cargo.toml index a18051f..b036a68 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ name = "rust_decimal" readme = "./README.md" repository = "https://github.com/paupino/rust-decimal" rust-version = "1.60" -version = "1.33.0" +version = "1.33.1" [package.metadata.docs.rs] all-features = true diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index 4b4a65f..dab106f 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -21,7 +21,7 @@ authors = ["Automatically generated"] edition = "2021" name = "rust-decimal-fuzz" publish = false -version = "1.33.0" +version = "1.33.1" [package.metadata] cargo-fuzz = true diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 1cfa6de..e2796e6 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rust_decimal_macros" -version = "1.33.0" +version = "1.33.1" authors = ["Paul Mason "] edition = "2021" description = "Shorthand macros to assist creating Decimal types."