diff --git a/Cargo.toml b/Cargo.toml index 7d522c8..fcfd889 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dyn-clone" -version = "1.0.9" # remember to update html_root_url +version = "1.0.10" # remember to update html_root_url authors = ["David Tolnay "] categories = ["rust-patterns", "no-std"] description = "Clone trait that is object-safe" diff --git a/src/lib.rs b/src/lib.rs index a8a1379..34107d2 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -84,7 +84,7 @@ //! // and similar for Box, Box, Box //! ``` -#![doc(html_root_url = "https://docs.rs/dyn_clone/1.0.9")] +#![doc(html_root_url = "https://docs.rs/dyn_clone/1.0.10")] #![no_std] #![allow(clippy::missing_panics_doc, clippy::ptr_as_ptr)]