Skip to content

Commit

Permalink
Version 1.32 (#606)
Browse files Browse the repository at this point in the history
  • Loading branch information
paupino authored Aug 23, 2023
1 parent 951512d commit 03ce442
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .buildnumber
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
1
31
32
0
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rust_decimal_macros"
version = "1.31.0"
version = "1.32.0"
authors = ["Paul Mason <[email protected]>"]
edition = "2021"
description = "Shorthand macros to assist creating Decimal types."
Expand Down

0 comments on commit 03ce442

Please sign in to comment.