diff --git a/Cargo.toml b/Cargo.toml index 198dcb6..076b13d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dyn-clone" -version = "1.0.10" # remember to update html_root_url +version = "1.0.11" # 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 9f0232b..f89a652 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.10")] +#![doc(html_root_url = "https://docs.rs/dyn_clone/1.0.11")] #![no_std] #![allow(clippy::missing_panics_doc, clippy::ptr_as_ptr)]