From 72f4f0cb3fa784a2f2932fa56267a22a6c8d9266 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Mon, 11 Sep 2023 08:49:32 -0500 Subject: [PATCH] chore: Simplify releasing `home` I'm not seeing any benefit derived by `html_root_url` --- Cargo.lock | 2 +- crates/home/Cargo.toml | 2 +- crates/home/src/lib.rs | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8b59d81fc..6a2a9b6c4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1850,7 +1850,7 @@ dependencies = [ [[package]] name = "home" -version = "0.5.7" +version = "0.5.8" dependencies = [ "windows-sys", ] diff --git a/crates/home/Cargo.toml b/crates/home/Cargo.toml index 03bd555a2..0f5eda524 100644 --- a/crates/home/Cargo.toml +++ b/crates/home/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "home" -version = "0.5.7" # also update `html_root_url` in `src/lib.rs` +version = "0.5.8" authors = ["Brian Anderson "] documentation = "https://docs.rs/home" edition.workspace = true diff --git a/crates/home/src/lib.rs b/crates/home/src/lib.rs index 0e1e975e4..4aee7383b 100644 --- a/crates/home/src/lib.rs +++ b/crates/home/src/lib.rs @@ -18,7 +18,6 @@ //! //! [discussion]: https://github.com/rust-lang/rust/pull/46799#issuecomment-361156935 -#![doc(html_root_url = "https://docs.rs/home/0.5.6")] #![deny(rust_2018_idioms)] pub mod env;