Skip to content

Commit 1c80137

Browse files
authored
Version 1.33.0 (#622)
1 parent 6cfccf3 commit 1c80137

File tree

6 files changed

+22
-6
lines changed

6 files changed

+22
-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-
32
2+
33
33
0

CHANGELOG.md

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

3+
## 1.33.0
4+
5+
### Fixed
6+
7+
* 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))
8+
* An empty string will be parsed as `None` during JSON deserialization instead of panicking. ([#607](https://github.com/paupino/rust-decimal/pull/607))
9+
10+
11+
### Changed
12+
13+
* 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))
14+
15+
### Credit
16+
17+
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.
18+
319
## 1.32.0
420

521
### 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.32.0"
15+
version = "1.33.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.32"
33-
rust_decimal_macros = "1.32"
32+
rust_decimal = "1.33"
33+
rust_decimal_macros = "1.33"
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.32.0"
24+
version = "1.33.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.32.0"
3+
version = "1.33.0"
44
authors = ["Paul Mason <[email protected]>"]
55
edition = "2021"
66
description = "Shorthand macros to assist creating Decimal types."

0 commit comments

Comments
 (0)