From e14a8d9cccf3bb3445c9e6326b7b8908b9746dc6 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Wed, 28 Oct 2020 18:14:31 -0700 Subject: [PATCH] Release 1.0.3 --- 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 9bea9de..fa07e1e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ref-cast" -version = "1.0.2" # remember to update html_root_url +version = "1.0.3" # remember to update html_root_url authors = ["David Tolnay "] edition = "2018" license = "MIT OR Apache-2.0" @@ -10,7 +10,7 @@ documentation = "https://docs.rs/ref-cast" readme = "README.md" [dependencies] -ref-cast-impl = { version = "=1.0.2", path = "derive" } +ref-cast-impl = { version = "=1.0.3", path = "derive" } [dev-dependencies] rustversion = "1.0" diff --git a/derive/Cargo.toml b/derive/Cargo.toml index d635a02..d3b6479 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ref-cast-impl" -version = "1.0.2" +version = "1.0.3" authors = ["David Tolnay "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/src/lib.rs b/src/lib.rs index 30b5925..77989d9 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -136,7 +136,7 @@ //! } //! ``` -#![doc(html_root_url = "https://docs.rs/ref-cast/1.0.2")] +#![doc(html_root_url = "https://docs.rs/ref-cast/1.0.3")] #![no_std] mod trivial;