diff --git a/Cargo.toml b/Cargo.toml index 12f4202..35e74d0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ref-cast" -version = "1.0.13" # remember to update html_root_url +version = "1.0.14" # 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.13", path = "derive" } +ref-cast-impl = { version = "=1.0.14", path = "derive" } [dev-dependencies] ref-cast-test-suite = { version = "0", path = "tests/helper" } diff --git a/derive/Cargo.toml b/derive/Cargo.toml index d4c8350..7d9f0fb 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ref-cast-impl" -version = "1.0.13" +version = "1.0.14" 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 7d2a806..92d1cb1 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -135,7 +135,7 @@ //! } //! ``` -#![doc(html_root_url = "https://docs.rs/ref-cast/1.0.13")] +#![doc(html_root_url = "https://docs.rs/ref-cast/1.0.14")] #![no_std] #![allow( clippy::manual_assert,