From cee99471c46f9f512640aa03c680a547ac72c22c Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Mon, 18 Sep 2023 23:21:04 -0700 Subject: [PATCH] Release 1.0.14 --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3b6378f..ad4aee9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dyn-clone" -version = "1.0.13" # remember to update html_root_url +version = "1.0.14" # 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 6fe0f5f..853fb59 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.13")] +#![doc(html_root_url = "https://docs.rs/dyn_clone/1.0.14")] #![no_std] #![allow( clippy::missing_panics_doc,