@@ -1055,7 +1055,7 @@ set NAME := true
10551055```
10561056
10571057Non-boolean settings can be set to both strings and
1058- expressions.<sup >master </sup >
1058+ expressions.<sup >1.46.0 </sup >
10591059
10601060However, because settings affect the behavior of backticks and many functions,
10611061those expressions may not contain backticks or function calls, directly or
@@ -2149,10 +2149,10 @@ change their behavior.
21492149
21502150| Name | Type | Description |
21512151| ------| ------| -------------|
2152- | ` [arg(ARG, help="HELP")] ` <sup >master </sup > | recipe | Print help string ` HELP ` for ` ARG ` in usage messages. |
2153- | ` [arg(ARG, long="LONG")] ` <sup >master </sup > | recipe | Require values of argument ` ARG ` to be passed as ` --LONG ` option. |
2154- | ` [arg(ARG, short="S")] ` <sup >master </sup > | recipe | Require values of argument ` ARG ` to be passed as short ` -S ` option. |
2155- | ` [arg(ARG, value="VALUE")] ` <sup >master </sup > | recipe | Makes option ` ARG ` a flag which does not take a value. |
2152+ | ` [arg(ARG, help="HELP")] ` <sup >1.46.0 </sup > | recipe | Print help string ` HELP ` for ` ARG ` in usage messages. |
2153+ | ` [arg(ARG, long="LONG")] ` <sup >1.46.0 </sup > | recipe | Require values of argument ` ARG ` to be passed as ` --LONG ` option. |
2154+ | ` [arg(ARG, short="S")] ` <sup >1.46.0 </sup > | recipe | Require values of argument ` ARG ` to be passed as short ` -S ` option. |
2155+ | ` [arg(ARG, value="VALUE")] ` <sup >1.46.0 </sup > | recipe | Makes option ` ARG ` a flag which does not take a value. |
21562156| ` [arg(ARG, pattern="PATTERN")] ` <sup >1.45.0</sup > | recipe | Require values of argument ` ARG ` to match regular expression ` PATTERN ` . |
21572157| ` [confirm] ` <sup >1.17.0</sup > | recipe | Require confirmation prior to executing recipe. |
21582158| ` [confirm(PROMPT)] ` <sup >1.23.0</sup > | recipe | Require confirmation prior to executing recipe with a custom prompt. |
@@ -2775,7 +2775,7 @@ Regular expressions are provided by the
27752775examples.
27762776
27772777Usage information for a recipe may be printed with the ` --usage `
2778- subcommand<sup >master </sup >:
2778+ subcommand<sup >1.46.0 </sup >:
27792779
27802780``` console
27812781$ just --usage foo
@@ -2818,7 +2818,7 @@ $ just foo hello
28182818bar=hello
28192819```
28202820
2821- The ` [arg(ARG, long=OPTION)] ` <sup >master </sup > attribute can be used to make a
2821+ The ` [arg(ARG, long=OPTION)] ` <sup >1.46.0 </sup > attribute can be used to make a
28222822parameter a long option.
28232823
28242824In this ` justfile ` :
@@ -2850,7 +2850,7 @@ name of the parameter:
28502850foo bar:
28512851```
28522852
2853- The ` [arg(ARG, short=OPTION)] ` <sup >master </sup > attribute can be used to make a
2853+ The ` [arg(ARG, short=OPTION)] ` <sup >1.46.0 </sup > attribute can be used to make a
28542854parameter a short option.
28552855
28562856In this ` justfile ` :
@@ -2871,7 +2871,7 @@ If a parameter has both a long and short option, it may be passed using either.
28712871
28722872Variadic ` + ` and ` ? ` parameters cannot be options.
28732873
2874- The ` [arg(ARG, value=VALUE, …)] ` <sup >master </sup > attribute can be used with
2874+ The ` [arg(ARG, value=VALUE, …)] ` <sup >1.46.0 </sup > attribute can be used with
28752875` long ` or ` short ` to make a parameter a flag which does not take a value.
28762876
28772877In this ` justfile ` :
0 commit comments