From 51bf8816be5a73e38b59fd4d9dda2bc18e9c2429 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 25 Feb 2024 22:08:30 -0800 Subject: [PATCH] Release 1.0.17 --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d1f56f1..2f7ca8b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dyn-clone" -version = "1.0.16" +version = "1.0.17" 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 282df83..b4d8a0f 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.16")] +#![doc(html_root_url = "https://docs.rs/dyn-clone/1.0.17")] #![no_std] #![allow( clippy::missing_panics_doc,