diff --git a/.buildnumber b/.buildnumber index 78624c4..76e2887 100644 --- a/.buildnumber +++ b/.buildnumber @@ -1,3 +1,3 @@ 1 -31 +32 0 diff --git a/CHANGELOG.md b/CHANGELOG.md index 62c9484..e866fbd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Version History +## 1.32.0 + +### Fixed + +* Fixes an issue with `is_integer` returning incorrect results for mantissa's 10^n where n >= 10. ([#605](https://github.com/paupino/rust-decimal/pull/605)) + +### Changed + +* `byteorder` is no longer required as a dependency for the postgres feature. ([#603](https://github.com/paupino/rust-decimal/pull/603)) + +### Credit + +Thank you to [@psychon](https://github.com/psychon) for your contribution! + ## 1.31.0 ### Fixed diff --git a/Cargo.toml b/Cargo.toml index c1ebd23..5373244 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.31.0" +version = "1.32.0" [package.metadata.docs.rs] all-features = true diff --git a/README.md b/README.md index 660ffc4..aa4c39f 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.31" -rust_decimal_macros = "1.31" +rust_decimal = "1.32" +rust_decimal_macros = "1.32" ``` ## Usage diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index d3e37a0..c36b376 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.31.0" +version = "1.32.0" [package.metadata] cargo-fuzz = true diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 3dc1302..0b02f44 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rust_decimal_macros" -version = "1.31.0" +version = "1.32.0" authors = ["Paul Mason "] edition = "2021" description = "Shorthand macros to assist creating Decimal types."