From 0250be360af56a66d923ab7cdc044b255a69e273 Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Mon, 28 Nov 2022 10:14:31 -0800 Subject: [PATCH] Update to version 0.6.5 --- CHANGELOG.md | 28 ++++++++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 30 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 623a921..5a5fb8c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,33 @@ # Changelog +## v0.6.5 + +### Changed + +- Stack overflow on any thread (not just 'rustc') is treated as an ICE. + [#194](https://github.com/rust-lang/cargo-bisect-rustc/pull/194) +- Clap (the CLI argument processor) has been updated, which may result in some minor CLI output and parsing changes. + [#225](https://github.com/rust-lang/cargo-bisect-rustc/pull/225) + [#229](https://github.com/rust-lang/cargo-bisect-rustc/pull/229) +- The check for the Rust upstream remote in the git repository has been loosened to only scan for `rust-lang/rust` so that non-https remotes like `git@github.com:rust-lang/rust.git` will work. + [#235](https://github.com/rust-lang/cargo-bisect-rustc/pull/235) +- The `--script` option will now look for a script in the current directory (so that it no longer requires the `./` prefix). + [#236](https://github.com/rust-lang/cargo-bisect-rustc/pull/236) + [#238](https://github.com/rust-lang/cargo-bisect-rustc/pull/238) +- Specifying `--start` without `--end` will default the end to be the current date. Previously it would use the date of whatever nightly is currently installed. + [#240](https://github.com/rust-lang/cargo-bisect-rustc/pull/240) + +### Fixed + +- Fixed using either `cargo bisect-rustc` (with a space) or `cargo-bisect-rustc` (with a dash). + [#187](https://github.com/rust-lang/cargo-bisect-rustc/pull/187) +- Show the CLI help page if no arguments are passed. + [#206](https://github.com/rust-lang/cargo-bisect-rustc/pull/206) +- The CLI argument validator for `--script` has been removed to allow running scripts on PATH. This also removes the `--host` validator which was not needed. + [#207](https://github.com/rust-lang/cargo-bisect-rustc/pull/207) +- Fixed showing the full chain of errors instead of just the top-level one. + [#237](https://github.com/rust-lang/cargo-bisect-rustc/pull/237) + ## v0.6.4 ### Added diff --git a/Cargo.lock b/Cargo.lock index c3a7f55..4f16c3f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -75,7 +75,7 @@ checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8" [[package]] name = "cargo-bisect-rustc" -version = "0.6.4" +version = "0.6.5" dependencies = [ "anyhow", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 2c8a0e6..fcd0e86 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.4" +version = "0.6.5" edition = "2021" [profile.release]