From 08c79b5e2348a4b44cac8860612c9ee1f5518544 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 27 Dec 2020 12:59:05 -0800 Subject: [PATCH] Release 0.4.7 --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 544af02..0192401 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "itoa" -version = "0.4.6" # remember to update html_root_url +version = "0.4.7" # 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 f7eedac..d7bc81c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -56,7 +56,7 @@ //! } //! ``` -#![doc(html_root_url = "https://docs.rs/itoa/0.4.6")] +#![doc(html_root_url = "https://docs.rs/itoa/0.4.7")] #![cfg_attr(not(feature = "std"), no_std)] #![cfg_attr(feature = "cargo-clippy", allow(renamed_and_removed_lints))] #![cfg_attr(