From ff588c7ed32e1bd223a4806c45933119b9d0cc24 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Mon, 1 Jan 2024 22:58:18 -0800 Subject: [PATCH] Release 1.0.22 --- Cargo.toml | 4 ++-- derive/Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e49ee34..8881711 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ref-cast" -version = "1.0.21" +version = "1.0.22" authors = ["David Tolnay "] 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." @@ -11,7 +11,7 @@ repository = "https://github.com/dtolnay/ref-cast" rust-version = "1.56" [dependencies] -ref-cast-impl = { version = "=1.0.21", path = "derive" } +ref-cast-impl = { version = "=1.0.22", path = "derive" } [dev-dependencies] ref-cast-test-suite = { version = "0", path = "tests/helper" } diff --git a/derive/Cargo.toml b/derive/Cargo.toml index 6dcc990..0101003 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ref-cast-impl" -version = "1.0.21" +version = "1.0.22" 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 e0dab58..a4d9d8c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -135,7 +135,7 @@ //! } //! ``` -#![doc(html_root_url = "https://docs.rs/ref-cast/1.0.21")] +#![doc(html_root_url = "https://docs.rs/ref-cast/1.0.22")] #![no_std] #![allow( clippy::extra_unused_type_parameters,