From 74056dc0cf5c2565f8c78b3649e212910480a7b3 Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Tue, 16 Dec 2025 09:02:55 -0800 Subject: [PATCH] Release 0.2.1 --- Cargo.toml | 2 +- README.md | 4 ++-- RELEASES.md | 4 ++++ src/lib.rs | 4 ++-- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9d805f7..782477a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "num-primitive" -version = "0.2.0" +version = "0.2.1" description = "Traits for primitive numeric types" repository = "https://github.com/rust-num/num-primitive" license = "MIT OR Apache-2.0" diff --git a/README.md b/README.md index 9c354e7..8f30c0b 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -num-primitive = "0.1" +num-primitive = "0.2" ``` ## Features @@ -48,7 +48,7 @@ the default `std` feature. Use this in `Cargo.toml`: ```toml [dependencies.num-primitive] -version = "0.1" +version = "0.2" default-features = false ``` diff --git a/RELEASES.md b/RELEASES.md index 73c762e..d9a5eb5 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,3 +1,7 @@ +# Release 0.2.1 (2025-12-16) + +- Doc-only, updated 0.1 references to 0.2. + # Release 0.2.0 (2025-12-15) - `PrimitiveFloat` includes supertraits `PrimitiveFloatToInt` for all integers. diff --git a/src/lib.rs b/src/lib.rs index b47eafc..370b52f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -33,7 +33,7 @@ //! //! ```toml //! [dependencies] -//! num-primitive = "0.1" +//! num-primitive = "0.2" //! ``` //! //! ## Features @@ -43,7 +43,7 @@ //! //! ```toml //! [dependencies.num-primitive] -//! version = "0.1" +//! version = "0.2" //! default-features = false //! ``` //!