diff --git a/Cargo.lock b/Cargo.lock index 0f1ec59afc46..d635dd838a19 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1901,7 +1901,7 @@ dependencies = [ [[package]] name = "home" -version = "0.5.9" +version = "0.5.8" dependencies = [ "windows-sys 0.52.0", ] diff --git a/crates/home/Cargo.toml b/crates/home/Cargo.toml index 294bcd56b19f..0759122ce40f 100644 --- a/crates/home/Cargo.toml +++ b/crates/home/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "home" -version = "0.5.9" +version = "0.5.8" authors = ["Brian Anderson "] rust-version = "1.70.0" # MSRV:3 documentation = "https://docs.rs/home" diff --git a/crates/home/README.md b/crates/home/README.md index a80adbd3b352..94f7eed31b86 100644 --- a/crates/home/README.md +++ b/crates/home/README.md @@ -1,3 +1,5 @@ +# Intentional change + [![Documentation](https://docs.rs/home/badge.svg)](https://docs.rs/home) [![crates.io](https://img.shields.io/crates/v/home.svg)](https://crates.io/crates/home) diff --git a/crates/xtask-bump-check/src/xtask.rs b/crates/xtask-bump-check/src/xtask.rs index db82fff632f6..bc8b74263958 100644 --- a/crates/xtask-bump-check/src/xtask.rs +++ b/crates/xtask-bump-check/src/xtask.rs @@ -121,7 +121,7 @@ fn bump_check(args: &clap::ArgMatches, config: &cargo::util::Config) -> CargoRes // Don't check against beta and stable branches, // as the publish of these crates are not tied with Rust release process. // See `TO_PUBLISH` in publish.py. - let crates_not_check_against_channels = ["home"]; + let crates_not_check_against_channels = []; status(&format!("base commit `{}`", base_commit.id()))?; status(&format!("head commit `{}`", head_commit.id()))?;