-
Notifications
You must be signed in to change notification settings - Fork 503
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Bump version: 0.9.0 → 0.9.1 - Update dependencies - Update changelog - Update man page - Update config test
- Loading branch information
Showing
9 changed files
with
50 additions
and
29 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.9.0" | ||
version = "0.9.1" | ||
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -247,8 +247,8 @@ impl Config { | |
.help("Edit justfile with editor given by $VISUAL or $EDITOR, falling back to `vim`"), | ||
) | ||
.arg(Arg::with_name(cmd::EVALUATE).long("evaluate").help( | ||
"Evaluate and print all variables. If positional arguments are present, only print the \ | ||
variables whose names are given as arguments.", | ||
"Evaluate and print all variables. If a variable name is given as an argument, only print \ | ||
that variable's value.", | ||
)) | ||
.arg( | ||
Arg::with_name(cmd::INIT) | ||
|
@@ -867,7 +867,7 @@ mod tests { | |
// have proper tests for all the flags, but this will do for now. | ||
#[test] | ||
fn help() { | ||
const EXPECTED_HELP: &str = "just v0.9.0 | ||
const EXPECTED_HELP: &str = "just v0.9.1 | ||
Casey Rodarmor <[email protected]> | ||
🤖 Just a command runner \ | ||
- https://github.com/casey/just | ||
|
@@ -884,9 +884,9 @@ FLAGS: | |
--dump Print entire justfile | ||
-e, --edit Edit justfile with editor given by $VISUAL or $EDITOR, falling back \ | ||
to `vim` | ||
--evaluate Evaluate and print all variables. If positional arguments are \ | ||
present, only print the | ||
variables whose names are given as arguments. | ||
--evaluate Evaluate and print all variables. If a variable name is given as an \ | ||
argument, only print | ||
that variable's value. | ||
--highlight Highlight echoed recipe lines in bold | ||
--init Initialize new justfile in project root | ||
-l, --list List available recipes and their arguments | ||
|