From e8570cc5aee9f1c304f0ff01e3f8c7fdbcbf10d4 Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Tue, 18 Jun 2024 06:50:54 -0700 Subject: [PATCH] Update to 0.6.9 --- CHANGELOG.md | 34 +++++++++++++++++++++++++++++++++- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 35 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b43f07..6ca6a2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,39 @@ ## v0.6.9 ### Added -- Flags `--term-old` and `--term-new` to allow custom messages when bisecting a regression. +- Added flags `--term-old` and `--term-new` to allow custom messages when bisecting a regression. + [#330](https://github.com/rust-lang/cargo-bisect-rustc/pull/330) + [#339](https://github.com/rust-lang/cargo-bisect-rustc/pull/339) + + +### Changed +- Updated dependencies. + [#314](https://github.com/rust-lang/cargo-bisect-rustc/pull/314) + [#313](https://github.com/rust-lang/cargo-bisect-rustc/pull/313) + [#315](https://github.com/rust-lang/cargo-bisect-rustc/pull/315) + [#319](https://github.com/rust-lang/cargo-bisect-rustc/pull/319) + [#326](https://github.com/rust-lang/cargo-bisect-rustc/pull/326) + [#327](https://github.com/rust-lang/cargo-bisect-rustc/pull/327) + [#329](https://github.com/rust-lang/cargo-bisect-rustc/pull/329) + [#340](https://github.com/rust-lang/cargo-bisect-rustc/pull/340) +- No longer defaults to cross-compile mode when `--target` is not specified. This more closely matches `cargo`'s behavior, which can affect reproducability. + [#323](https://github.com/rust-lang/cargo-bisect-rustc/pull/323) +- Removed LTO and stripping of building `cargo-bisect-rustc` itself. + [#334](https://github.com/rust-lang/cargo-bisect-rustc/pull/334) + +### Fixed +- Don't assume the date before the regressed nightly is the good nightly if there are missing nightlies. + [#320](https://github.com/rust-lang/cargo-bisect-rustc/pull/320) +- Fixed building `cargo-bisect-rustc` itself to avoid unnecessary build-script rebuilds. + [#324](https://github.com/rust-lang/cargo-bisect-rustc/pull/324) +- Fixed doc-change example documentation. + [#336](https://github.com/rust-lang/cargo-bisect-rustc/pull/336) +- Replaced a panic with an error message if a given SHA commit is not from bors using the GitHub backend. + [#318](https://github.com/rust-lang/cargo-bisect-rustc/pull/318) +- Fixed determination of what the latest nightly is when `--end` is not specified, and it is past UTC midnight, but the release process has not yet finished. + [#325](https://github.com/rust-lang/cargo-bisect-rustc/pull/325) +- Fixed panic with `--by-commit` but no `--start`. + [#325](https://github.com/rust-lang/cargo-bisect-rustc/pull/325) ## v0.6.8 diff --git a/Cargo.lock b/Cargo.lock index 8d4bb8e..9dffbc9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -148,7 +148,7 @@ checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" [[package]] name = "cargo-bisect-rustc" -version = "0.6.8" +version = "0.6.9" dependencies = [ "anyhow", "chrono", diff --git a/Cargo.toml b/Cargo.toml index e9408ce..95112e4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0" name = "cargo-bisect-rustc" readme = "README.md" repository = "https://github.com/rust-lang/cargo-bisect-rustc" -version = "0.6.8" +version = "0.6.9" edition = "2021" [dependencies]