From 668d654fd67c16bbeb53e5413c97e91a41bd84e5 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 9 Dec 2023 10:25:48 -0800 Subject: [PATCH] Release 1.0.16 --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3c8653a..88db3cf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ryu" -version = "1.0.15" # don't forget to update html_root_url +version = "1.0.16" # don't forget to update html_root_url authors = ["David Tolnay "] categories = ["value-formatting", "no-std", "no-std::no-alloc"] description = "Fast floating point to string conversion" diff --git a/src/lib.rs b/src/lib.rs index 91c82c1..cf3a732 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -81,7 +81,7 @@ //! notation. #![no_std] -#![doc(html_root_url = "https://docs.rs/ryu/1.0.15")] +#![doc(html_root_url = "https://docs.rs/ryu/1.0.16")] #![allow( clippy::cast_lossless, clippy::cast_possible_truncation,