diff --git a/Cargo.toml b/Cargo.toml index 70401ce..a7e46ac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dtoa" -version = "1.0.4" # remember to update html_root_url +version = "1.0.5" # remember to update html_root_url authors = ["David Tolnay "] categories = ["value-formatting", "no-std"] description = "Fast floating point primitive to string conversion" diff --git a/src/lib.rs b/src/lib.rs index cb05d23..24d4d91 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.4")] +#![doc(html_root_url = "https://docs.rs/dtoa/1.0.5")] #![no_std] #![allow( clippy::cast_lossless,