diff --git a/Cargo.toml b/Cargo.toml index b68fdc8..78ca006 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "itoa" -version = "0.4.8" # remember to update html_root_url +version = "1.0.0" # remember to update html_root_url authors = ["David Tolnay "] rust-version = "1.36" license = "MIT OR Apache-2.0" diff --git a/README.md b/README.md index 510cb82..6e241e1 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ See also [`ryu`] for printing floating point primitives. ```toml [dependencies] -itoa = "0.4" +itoa = "1.0" ```
diff --git a/src/lib.rs b/src/lib.rs index baee83b..5932aab 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/0.4.8")] +#![doc(html_root_url = "https://docs.rs/itoa/1.0.0")] #![no_std] #![allow( clippy::cast_lossless,