Skip to content

Commit 06c520c

Browse files
committed
Release 1.0.23
1 parent fd3256d commit 06c520c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ref-cast"
3-
version = "1.0.22"
3+
version = "1.0.23"
44
authors = ["David Tolnay <[email protected]>"]
55
categories = ["rust-patterns", "no-std", "no-std::no-alloc"]
66
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"
1111
rust-version = "1.56"
1212

1313
[dependencies]
14-
ref-cast-impl = { version = "=1.0.22", path = "derive" }
14+
ref-cast-impl = { version = "=1.0.23", path = "derive" }
1515

1616
[dev-dependencies]
1717
ref-cast-test-suite = { version = "0", path = "tests/helper" }

derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ref-cast-impl"
3-
version = "1.0.22"
3+
version = "1.0.23"
44
authors = ["David Tolnay <[email protected]>"]
55
description = "Derive implementation for ref_cast::RefCast."
66
documentation = "https://docs.rs/ref-cast"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
//! }
136136
//! ```
137137
138-
#![doc(html_root_url = "https://docs.rs/ref-cast/1.0.22")]
138+
#![doc(html_root_url = "https://docs.rs/ref-cast/1.0.23")]
139139
#![no_std]
140140
#![allow(
141141
clippy::extra_unused_type_parameters,

0 commit comments

Comments
 (0)