diff --git a/Cargo.toml b/Cargo.toml index 74af501..0d4579b 100644 --- a/Cargo.toml +++ b/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 "] categories = ["rust-patterns", "no-std"] description = "Safely cast &T to &U where the struct U contains a single field of type T." @@ -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" } diff --git a/derive/Cargo.toml b/derive/Cargo.toml index 34f15f8..49c53a5 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ref-cast-impl" -version = "1.0.11" +version = "1.0.12" authors = ["David Tolnay "] description = "Derive implementation for ref_cast::RefCast." documentation = "https://docs.rs/ref-cast" diff --git a/src/lib.rs b/src/lib.rs index 5b70a01..8e77cb7 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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,