diff --git a/Cargo.toml b/Cargo.toml index 5b9d9ac..6828417 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dtoa" -version = "1.0.8" # remember to update html_root_url +version = "1.0.9" # remember to update html_root_url authors = ["David Tolnay "] categories = ["value-formatting", "no-std", "no-std::no-alloc"] description = "Fast floating point primitive to string conversion" diff --git a/src/lib.rs b/src/lib.rs index ace934c..4eed2fa 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -31,7 +31,7 @@ //! //! ![performance](https://raw.githubusercontent.com/dtolnay/dtoa/master/performance.png) -#![doc(html_root_url = "https://docs.rs/dtoa/1.0.8")] +#![doc(html_root_url = "https://docs.rs/dtoa/1.0.9")] #![no_std] #![allow( clippy::cast_lossless,