From 8f392032fadf15b5e6b9b7b6add21875575d67af Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Mon, 25 Mar 2024 23:00:42 -0700 Subject: [PATCH] Release 1.0.11 --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a977035..4703653 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "itoa" -version = "1.0.10" +version = "1.0.11" 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 53fcbe7..8d6721d 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.10")] +#![doc(html_root_url = "https://docs.rs/itoa/1.0.11")] #![no_std] #![allow( clippy::cast_lossless,