diff --git a/Cargo.toml b/Cargo.toml index 84f72f2..03fe09b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "itoa" -version = "0.4.4" # remember to update html_root_url +version = "0.4.5" # remember to update html_root_url authors = ["David Tolnay "] license = "MIT OR Apache-2.0" description = "Fast functions for printing integer primitives to an io::Write" diff --git a/src/lib.rs b/src/lib.rs index 0d731e8..1b0f1aa 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -48,7 +48,7 @@ //! } //! ``` -#![doc(html_root_url = "https://docs.rs/itoa/0.4.4")] +#![doc(html_root_url = "https://docs.rs/itoa/0.4.5")] #![cfg_attr(not(feature = "std"), no_std)] #![cfg_attr(feature = "cargo-clippy", allow(renamed_and_removed_lints))] #![cfg_attr(