Skip to content

Commit

Permalink
Version 1.34.3 (#648)
Browse files Browse the repository at this point in the history
  • Loading branch information
paupino committed Feb 10, 2024
1 parent 1a119c7 commit c5d4afe
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .buildnumber
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
1
34
2
3
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Version History

## 1.34.3

### Fixed

* Fixes an issue where when hydrating an underflowing `NUMERIC` value from PostgreSQL it would sometimes generate an invalid
Decimal ([#647](https://github.com/paupino/rust-decimal/pull/647))

## 1.34.2

### 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.34.2"
version = "1.34.3"

[package.metadata.docs.rs]
all-features = true
Expand Down
2 changes: 1 addition & 1 deletion make/scripts/version.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ fn main() -> Result<(), Box<dyn Error>> {
println!("{major}.{minor}.{revision}");

// Process all cargo files
for entry in glob("./**/Cargo.toml").expect("Failed to read glob pattern") {
for entry in glob("./Cargo.toml").expect("Failed to read glob pattern") {
let path = entry?;
let toml = fs::read_to_string(&path)?;
let mut updated_toml = String::new();
Expand Down

0 comments on commit c5d4afe

Please sign in to comment.