Skip to content

Commit

Permalink
Release 1.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Feb 28, 2023
1 parent 0a163ee commit 65cc5e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <dtolnay@gmail.com>"]
categories = ["rust-patterns", "no-std"]
description = "Clone trait that is object-safe"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
//! // and similar for Box<dyn MyTrait + Send>, Box<dyn MyTrait + Sync>, Box<dyn MyTrait + Send + Sync>
//! ```

#![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)]

Expand Down

0 comments on commit 65cc5e6

Please sign in to comment.