From ba8dd88380e7d17c776907d9a1e6b0c0be5bcedb Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 12 Dec 2021 12:07:18 -0800 Subject: [PATCH] Release 1.0.1 --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 78ca006..da99897 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "itoa" -version = "1.0.0" # remember to update html_root_url +version = "1.0.1" # remember to update html_root_url authors = ["David Tolnay "] rust-version = "1.36" license = "MIT OR Apache-2.0" diff --git a/src/lib.rs b/src/lib.rs index 38d9db2..c26bf35 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.0")] +#![doc(html_root_url = "https://docs.rs/itoa/1.0.1")] #![no_std] #![allow( clippy::cast_lossless,