Skip to content

Commit c5d4afe

Browse files
authored
Version 1.34.3 (#648)
1 parent 1a119c7 commit c5d4afe

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

.buildnumber

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
1
22
34
3-
2
3+
3

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Version History
22

3+
## 1.34.3
4+
5+
### Fixed
6+
7+
* Fixes an issue where when hydrating an underflowing `NUMERIC` value from PostgreSQL it would sometimes generate an invalid
8+
Decimal ([#647](https://github.com/paupino/rust-decimal/pull/647))
9+
310
## 1.34.2
411

512
### Fixed

Cargo.toml

+1-1
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.34.2"
15+
version = "1.34.3"
1616

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

make/scripts/version.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ fn main() -> Result<(), Box<dyn Error>> {
1919
println!("{major}.{minor}.{revision}");
2020

2121
// Process all cargo files
22-
for entry in glob("./**/Cargo.toml").expect("Failed to read glob pattern") {
22+
for entry in glob("./Cargo.toml").expect("Failed to read glob pattern") {
2323
let path = entry?;
2424
let toml = fs::read_to_string(&path)?;
2525
let mut updated_toml = String::new();

0 commit comments

Comments
 (0)