From bfcf645f20328a347409a71b108948418dd147df Mon Sep 17 00:00:00 2001 From: Nikhil Benesch Date: Sat, 11 Nov 2023 11:33:30 -0500 Subject: [PATCH] release: dec v0.4.9 --- README.md | 4 ++-- dec/CHANGELOG.md | 4 ++++ dec/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 49d5cf1..31cd850 100644 --- a/README.md +++ b/README.md @@ -10,10 +10,10 @@ libdecnumber. ``` # Cargo.toml [dependencies] -dec = "0.4.8" +dec = "0.4.9" ``` -**[View documentation.](https://docs.rs/dec/0.4.8/)** +**[View documentation.](https://docs.rs/dec/0.4.9/)** ## decnumber-sys [![crates.io](https://img.shields.io/crates/v/decnumber-sys.svg)](https://crates.io/crates/decnumber-sys) diff --git a/dec/CHANGELOG.md b/dec/CHANGELOG.md index b3404f1..d1148a0 100644 --- a/dec/CHANGELOG.md +++ b/dec/CHANGELOG.md @@ -19,6 +19,10 @@ Versioning]. `Decimal`, `Decimal64`, and `Decimal128` types when the `num-traits` feature is enabled. +## 0.4.9 - 2023-11-11 + +* Fix several instances of potential memory unsafety. + ## 0.4.8 - 2022-02-05 * Expose `TryFromDecimalError`. diff --git a/dec/Cargo.toml b/dec/Cargo.toml index 34a8df2..226d153 100644 --- a/dec/Cargo.toml +++ b/dec/Cargo.toml @@ -8,7 +8,7 @@ repository = "https://github.com/MaterializeInc/rust-decnumber" license = "Apache-2.0" categories = ["api-bindings"] keywords = ["decimal", "decnumber"] -version = "0.4.8" +version = "0.4.9" edition = "2018" [dependencies]