From 65cc5e627882010b75ecb7b3a90d3a3ecf88c17f Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Mon, 27 Feb 2023 21:55:41 -0700 Subject: [PATCH] Release 1.0.11 --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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)]