-
Notifications
You must be signed in to change notification settings - Fork 498
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Bump version: v0.4.5 -> v0.5.0 - Update dependencies - Update changelog - Appease linter - Appease clippy
- Loading branch information
Showing
7 changed files
with
52 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "just" | ||
version = "0.4.5" | ||
version = "0.5.0" | ||
description = "🤖 Just a command runner" | ||
authors = ["Casey Rodarmor <[email protected]>"] | ||
license = "CC0-1.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -486,7 +486,7 @@ impl Config { | |
justfile: Justfile, | ||
working_directory: &Path, | ||
overrides: &BTreeMap<String, String>, | ||
arguments: &Vec<String>, | ||
arguments: &[String], | ||
) -> Result<(), i32> { | ||
if let Err(error) = InterruptHandler::install() { | ||
warn!("Failed to set CTRL-C handler: {}", error) | ||
|
@@ -547,7 +547,7 @@ mod tests { | |
// proper tests for all the flags, but this will do for now. | ||
#[test] | ||
fn help() { | ||
const EXPECTED_HELP: &str = "just v0.4.5 | ||
const EXPECTED_HELP: &str = "just v0.5.0 | ||
Casey Rodarmor <[email protected]> | ||
🤖 Just a command runner - https://github.com/casey/just | ||
|
@@ -558,7 +558,7 @@ FLAGS: | |
--dry-run Print what just would do without doing it | ||
--dump Print entire justfile | ||
-e, --edit \ | ||
Edit justfile with editor given by $VISUAL or $EDITOR, falling back to `vim` | ||
Edit justfile with editor given by $VISUAL or $EDITOR, falling back to `vim` | ||
--evaluate Print evaluated variables | ||
--highlight Highlight echoed recipe lines in bold | ||
-l, --list List available recipes and their arguments | ||
|
@@ -580,7 +580,8 @@ OPTIONS: | |
ARGS: | ||
<ARGUMENTS>... Overrides and recipe(s) to run, defaulting to the first recipe in the justfile"; | ||
<ARGUMENTS>... \ | ||
Overrides and recipe(s) to run, defaulting to the first recipe in the justfile"; | ||
|
||
let app = Config::app().setting(AppSettings::ColorNever); | ||
let mut buffer = Vec::new(); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters