diff --git a/.buildnumber b/.buildnumber index 76e2887..d802d84 100644 --- a/.buildnumber +++ b/.buildnumber @@ -1,3 +1,3 @@ 1 -32 +33 0 diff --git a/CHANGELOG.md b/CHANGELOG.md index e866fbd..a026c5c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Version History +## 1.33.0 + +### Fixed + +* 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)) + +### Credit + +Thank you to [@gai6948](https://github.com/gai6948) for their contribution! Also thank you to all of those that pushed for the security advisory changes. + ## 1.32.0 ### Fixed diff --git a/Cargo.toml b/Cargo.toml index 7d160f5..a18051f 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.32.0" +version = "1.33.0" [package.metadata.docs.rs] all-features = true diff --git a/README.md b/README.md index aa4c39f..c70280b 100644 --- a/README.md +++ b/README.md @@ -29,8 +29,8 @@ Alternatively, you can edit your `Cargo.toml` directly and run `cargo update`: ```toml [dependencies] -rust_decimal = "1.32" -rust_decimal_macros = "1.32" +rust_decimal = "1.33" +rust_decimal_macros = "1.33" ``` ## Usage diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index c36b376..4b4a65f 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.32.0" +version = "1.33.0" [package.metadata] cargo-fuzz = true diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 0b02f44..1cfa6de 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rust_decimal_macros" -version = "1.32.0" +version = "1.33.0" authors = ["Paul Mason "] edition = "2021" description = "Shorthand macros to assist creating Decimal types."