Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
num-primitive = "0.1"
num-primitive = "0.2"
```

## Features
Expand All @@ -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
```

Expand Down
4 changes: 4 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
//!
//! ```toml
//! [dependencies]
//! num-primitive = "0.1"
//! num-primitive = "0.2"
//! ```
//!
//! ## Features
Expand All @@ -43,7 +43,7 @@
//!
//! ```toml
//! [dependencies.num-primitive]
//! version = "0.1"
//! version = "0.2"
//! default-features = false
//! ```
//!
Expand Down