From b057380c72fdb513fdb17419c8cc4baf2194ce66 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Wed, 16 Aug 2023 18:13:48 -0700 Subject: [PATCH] Release 1.0.13 --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0edc4dd..3b6378f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dyn-clone" -version = "1.0.12" # remember to update html_root_url +version = "1.0.13" # 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 e57e8d3..bcf0a14 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.12")] +#![doc(html_root_url = "https://docs.rs/dyn_clone/1.0.13")] #![no_std] #![allow(clippy::missing_panics_doc, clippy::ptr_as_ptr)]