Skip to content

Commit

Permalink
Release 1.0.15
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Mar 3, 2023
1 parent 50e768b commit e924dc1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ref-cast"
version = "1.0.14" # remember to update html_root_url
version = "1.0.15" # 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.14", path = "derive" }
ref-cast-impl = { version = "=1.0.15", path = "derive" }

[dev-dependencies]
ref-cast-test-suite = { version = "0", path = "tests/helper" }
Expand Down
2 changes: 1 addition & 1 deletion derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ref-cast-impl"
version = "1.0.14"
version = "1.0.15"
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
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
//! }
//! ```
#![doc(html_root_url = "https://docs.rs/ref-cast/1.0.14")]
#![doc(html_root_url = "https://docs.rs/ref-cast/1.0.15")]
#![no_std]
#![allow(
clippy::extra_unused_type_parameters,
Expand Down

0 comments on commit e924dc1

Please sign in to comment.