Skip to content

Commit

Permalink
Release 1.0.21
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Dec 13, 2023
1 parent ee89a82 commit bc54f09
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ref-cast"
version = "1.0.20"
version = "1.0.21"
authors = ["David Tolnay <dtolnay@gmail.com>"]
categories = ["rust-patterns", "no-std", "no-std::no-alloc"]
description = "Safely cast &T to &U where the struct U contains a single field of type T."
Expand All @@ -11,7 +11,7 @@ repository = "https://github.com/dtolnay/ref-cast"
rust-version = "1.56"

[dependencies]
ref-cast-impl = { version = "=1.0.20", path = "derive" }
ref-cast-impl = { version = "=1.0.21", path = "derive" }

[dev-dependencies]
ref-cast-test-suite = { version = "0", path = "tests/helper" }
Expand Down
2 changes: 1 addition & 1 deletion derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ref-cast-impl"
version = "1.0.20"
version = "1.0.21"
authors = ["David Tolnay <dtolnay@gmail.com>"]
description = "Derive implementation for ref_cast::RefCast."
documentation = "https://docs.rs/ref-cast"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
//! }
//! ```
#![doc(html_root_url = "https://docs.rs/ref-cast/1.0.20")]
#![doc(html_root_url = "https://docs.rs/ref-cast/1.0.21")]
#![no_std]
#![allow(
clippy::extra_unused_type_parameters,
Expand Down

0 comments on commit bc54f09

Please sign in to comment.