Skip to content

Commit

Permalink
Release 1.0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Oct 12, 2022
1 parent 92a4623 commit 6d9f325
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "ref-cast"
version = "1.0.11" # remember to update html_root_url
version = "1.0.12" # remember to update html_root_url
authors = ["David Tolnay <dtolnay@gmail.com>"]
categories = ["rust-patterns", "no-std"]
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.31"

[dependencies]
ref-cast-impl = { version = "=1.0.11", path = "derive" }
ref-cast-impl = { version = "=1.0.12", path = "derive" }

[dev-dependencies]
ref-cast-test-suite = { version = "0", path = "tests/helper" }
Expand Down
2 changes: 1 addition & 1 deletion derive/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "ref-cast-impl"
version = "1.0.11"
version = "1.0.12"
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
Expand Up @@ -135,7 +135,7 @@
//! }
//! ```

#![doc(html_root_url = "https://docs.rs/ref-cast/1.0.11")]
#![doc(html_root_url = "https://docs.rs/ref-cast/1.0.12")]
#![no_std]
#![allow(
clippy::manual_assert,
Expand Down

0 comments on commit 6d9f325

Please sign in to comment.