From b45df1f3550b57ce06ad63a333c2cc337eba4fc9 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Wed, 20 Nov 2024 00:27:12 -0800 Subject: [PATCH] Release 1.0.12 --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4703653..d64a912 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "itoa" -version = "1.0.11" +version = "1.0.12" authors = ["David Tolnay "] categories = ["value-formatting", "no-std", "no-std::no-alloc"] description = "Fast integer primitive to string conversion" diff --git a/src/lib.rs b/src/lib.rs index 99ffed4..eff9e07 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -30,7 +30,7 @@ //! //! ![performance](https://raw.githubusercontent.com/dtolnay/itoa/master/performance.png) -#![doc(html_root_url = "https://docs.rs/itoa/1.0.11")] +#![doc(html_root_url = "https://docs.rs/itoa/1.0.12")] #![no_std] #![allow( clippy::cast_lossless,