Skip to content

Commit 03ce442

Browse files
authored
Version 1.32 (paupino#606)
1 parent 951512d commit 03ce442

File tree

6 files changed

+20
-6
lines changed

6 files changed

+20
-6
lines changed

.buildnumber

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
1
2-
31
2+
32
33
0

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Version History
22

3+
## 1.32.0
4+
5+
### Fixed
6+
7+
* 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))
8+
9+
### Changed
10+
11+
* `byteorder` is no longer required as a dependency for the postgres feature. ([#603](https://github.com/paupino/rust-decimal/pull/603))
12+
13+
### Credit
14+
15+
Thank you to [@psychon](https://github.com/psychon) for your contribution!
16+
317
## 1.31.0
418

519
### Fixed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ name = "rust_decimal"
1212
readme = "./README.md"
1313
repository = "https://github.com/paupino/rust-decimal"
1414
rust-version = "1.60"
15-
version = "1.31.0"
15+
version = "1.32.0"
1616

1717
[package.metadata.docs.rs]
1818
all-features = true

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ Alternatively, you can edit your `Cargo.toml` directly and run `cargo update`:
2929

3030
```toml
3131
[dependencies]
32-
rust_decimal = "1.31"
33-
rust_decimal_macros = "1.31"
32+
rust_decimal = "1.32"
33+
rust_decimal_macros = "1.32"
3434
```
3535

3636
## Usage

fuzz/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ authors = ["Automatically generated"]
2121
edition = "2021"
2222
name = "rust-decimal-fuzz"
2323
publish = false
24-
version = "1.31.0"
24+
version = "1.32.0"
2525

2626
[package.metadata]
2727
cargo-fuzz = true

macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rust_decimal_macros"
3-
version = "1.31.0"
3+
version = "1.32.0"
44
authors = ["Paul Mason <paul@form1.co.nz>"]
55
edition = "2021"
66
description = "Shorthand macros to assist creating Decimal types."

0 commit comments

Comments
 (0)