From 26259a9a1ada016a6d045b5f0ebeea2089f646a3 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 2 Jul 2023 20:42:05 -0700 Subject: [PATCH] Release 1.0.7 --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f79800a..b75b934 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "itoa" -version = "1.0.6" # remember to update html_root_url +version = "1.0.7" # remember to update html_root_url authors = ["David Tolnay "] categories = ["value-formatting", "no-std"] description = "Fast integer primitive to string conversion" diff --git a/src/lib.rs b/src/lib.rs index f7b9e8f..202885f 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.6")] +#![doc(html_root_url = "https://docs.rs/itoa/1.0.7")] #![no_std] #![allow( clippy::cast_lossless,