From 8ebc6ab219dc5e57c06c9bb9050bfcab243012fc Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Mon, 3 Mar 2025 15:26:42 -0800 Subject: [PATCH] Release 1.0.19 --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 58328fb..e4581d0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dyn-clone" -version = "1.0.18" +version = "1.0.19" authors = ["David Tolnay "] categories = ["rust-patterns", "no-std"] description = "Clone trait that is dyn-compatible" diff --git a/src/lib.rs b/src/lib.rs index ab5889d..e35e108 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -80,7 +80,7 @@ //! // and similar for Box, Box, Box //! ``` -#![doc(html_root_url = "https://docs.rs/dyn-clone/1.0.18")] +#![doc(html_root_url = "https://docs.rs/dyn-clone/1.0.19")] #![no_std] #![allow( clippy::missing_panics_doc,