Release 0.10.7 (#1081)
- Bump version: 0.10.6 → 0.10.7 - Update changelog - Update man page
This commit is contained in:
parent
57db9fe04d
commit
c59e4a9e66
@ -1,6 +1,14 @@
|
||||
Changelog
|
||||
=========
|
||||
|
||||
[0.10.7](https://github.com/casey/just/releases/tag/0.10.7) - 2022-1-30
|
||||
-----------------------------------------------------------------------
|
||||
|
||||
### Misc
|
||||
- Don't run tests in release workflow (#1080)
|
||||
- Fix windows chooser invocation error message test (#1079)
|
||||
- Remove call to sed in justfile (#1078)
|
||||
|
||||
[0.10.6](https://github.com/casey/just/releases/tag/0.10.6) - 2022-1-29
|
||||
-----------------------------------------------------------------------
|
||||
|
||||
|
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -227,7 +227,7 @@ checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35"
|
||||
|
||||
[[package]]
|
||||
name = "just"
|
||||
version = "0.10.6"
|
||||
version = "0.10.7"
|
||||
dependencies = [
|
||||
"ansi_term",
|
||||
"atty",
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "just"
|
||||
version = "0.10.6"
|
||||
version = "0.10.7"
|
||||
description = "🤖 Just a command runner"
|
||||
authors = ["Casey Rodarmor <casey@rodarmor.com>"]
|
||||
license = "CC0-1.0"
|
||||
|
35
man/just.1
35
man/just.1
@ -1,9 +1,9 @@
|
||||
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.48.5.
|
||||
.TH JUST "1" "January 2022" "just 0.10.6" "Just Manual"
|
||||
.TH JUST "1" "January 2022" "just 0.10.7" "Just Manual"
|
||||
.SH NAME
|
||||
just \- save and run commands
|
||||
.SH DESCRIPTION
|
||||
just 0.10.6
|
||||
just 0.10.7
|
||||
\- Please see https://github.com/casey/just for more information.
|
||||
.SS "USAGE:"
|
||||
.IP
|
||||
@ -14,13 +14,12 @@ just [FLAGS] [OPTIONS] [\-\-] [ARGUMENTS]...
|
||||
Print changelog
|
||||
.TP
|
||||
\fB\-\-check\fR
|
||||
Run `\-\-fmt` in 'check' mode. Exits with 0 if justfile is formatted
|
||||
correctly. Exits with 1 and prints a diff if formatting is required.
|
||||
Run `\-\-fmt` in 'check' mode. Exits with 0 if justfile is formatted correctly. Exits with 1
|
||||
and prints a diff if formatting is required.
|
||||
.TP
|
||||
\fB\-\-choose\fR
|
||||
Select one or more recipes to run using a binary. If `\-\-chooser` is
|
||||
not passed the chooser defaults to the value of $JUST_CHOOSER,
|
||||
falling back to `fzf`
|
||||
Select one or more recipes to run using a binary. If `\-\-chooser` is not passed the chooser
|
||||
defaults to the value of $JUST_CHOOSER, falling back to `fzf`
|
||||
.TP
|
||||
\fB\-\-clear\-shell\-args\fR
|
||||
Clear shell arguments
|
||||
@ -32,12 +31,11 @@ Print what just would do without doing it
|
||||
Print justfile
|
||||
.TP
|
||||
\fB\-e\fR, \fB\-\-edit\fR
|
||||
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`
|
||||
.TP
|
||||
\fB\-\-evaluate\fR
|
||||
Evaluate and print all variables. If a variable name is given as an
|
||||
argument, only print that variable's value.
|
||||
Evaluate and print all variables. If a variable name is given as an argument, only print
|
||||
that variable's value.
|
||||
.TP
|
||||
\fB\-\-fmt\fR
|
||||
Format and overwrite justfile
|
||||
@ -61,8 +59,7 @@ Don't highlight echoed recipe lines in bold
|
||||
Suppress all output
|
||||
.TP
|
||||
\fB\-\-shell\-command\fR
|
||||
Invoke <COMMAND> with the shell used to run recipe lines and
|
||||
backticks
|
||||
Invoke <COMMAND> with the shell used to run recipe lines and backticks
|
||||
.TP
|
||||
\fB\-\-summary\fR
|
||||
List names of available recipes
|
||||
@ -100,15 +97,12 @@ Run an arbitrary command with the working directory, `.env`, overrides, and expo
|
||||
.HP
|
||||
\fB\-\-completions\fR <SHELL>
|
||||
.IP
|
||||
Print shell completion script for <SHELL> [possible values: zsh, bash, fish,
|
||||
powershell, elvish]
|
||||
.HP
|
||||
Print shell completion script for <SHELL> [possible values: zsh, bash, fish, powershell, elvish]
|
||||
.TP
|
||||
\fB\-\-dotenv\-filename\fR <DOTENV\-FILENAME>
|
||||
.IP
|
||||
Search for environment file named <DOTENV\-FILENAME> instead of `.env`
|
||||
.HP
|
||||
.TP
|
||||
\fB\-\-dotenv\-path\fR <DOTENV\-PATH>
|
||||
.IP
|
||||
Load environment file at <DOTENV\-PATH> instead of searching for one
|
||||
.HP
|
||||
\fB\-\-dump\-format\fR <FORMAT>
|
||||
@ -143,5 +137,4 @@ Use <WORKING\-DIRECTORY> as working directory. \fB\-\-justfile\fR must also be s
|
||||
.SS "ARGS:"
|
||||
.TP
|
||||
<ARGUMENTS>...
|
||||
Overrides and recipe(s) to run, defaulting to the first recipe in the
|
||||
justfile
|
||||
Overrides and recipe(s) to run, defaulting to the first recipe in the justfile
|
||||
|
Loading…
Reference in New Issue
Block a user