From 60834c93b5b48a67d1f3b278b50067f313afab44 Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Sat, 20 Dec 2025 13:15:58 -0800 Subject: [PATCH] Release 0.3.4 --- Cargo.toml | 2 +- RELEASES.md | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 0740499..a8db70c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "num-primitive" -version = "0.3.3" +version = "0.3.4" description = "Traits for primitive numeric types" repository = "https://github.com/rust-num/num-primitive" license = "MIT OR Apache-2.0" diff --git a/RELEASES.md b/RELEASES.md index 04f1aac..bb795b9 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,3 +1,9 @@ +# Release 0.3.4 (2025-12-20) + +- Added `PrimitiveInteger::from_str_radix`. +- Specified error types in `PrimitiveInteger: FromStr`, `PrimitiveSigned: TryFrom`, + and `PrimitiveUnsigned: TryFrom`. + # Release 0.3.3 (2025-12-17) - Added `PrimitiveBytes` to consolidate the constraints on `PrimitiveNumber::Bytes`