Release 1.18.0 (#1778)
- Bump version: 1.17.0 → 1.18.0 - Update changelog - Update changelog contributor credits - Update dependencies - Update man page
This commit is contained in:
parent
660ae21373
commit
f47c175bc5
@ -1,6 +1,15 @@
|
|||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
[1.18.0](https://github.com/casey/just/releases/tag/1.18.0) - 2023-12-24
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- Stabilize `!include path` as `import 'path'` ([#1771](https://github.com/casey/just/pull/1771))
|
||||||
|
|
||||||
|
### Misc
|
||||||
|
- Tweak readme ([#1775](https://github.com/casey/just/pull/1775))
|
||||||
|
|
||||||
[1.17.0](https://github.com/casey/just/releases/tag/1.17.0) - 2023-12-20
|
[1.17.0](https://github.com/casey/just/releases/tag/1.17.0) - 2023-12-20
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
20
Cargo.lock
generated
20
Cargo.lock
generated
@ -121,12 +121,12 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ctrlc"
|
name = "ctrlc"
|
||||||
version = "3.4.1"
|
version = "3.4.2"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "82e95fbd621905b854affdc67943b043a0fbb6ed7385fd5a25650d19a8a6cfdf"
|
checksum = "b467862cc8610ca6fc9a1532d7777cee0804e678ab45410897b9396495994a0b"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"nix",
|
"nix",
|
||||||
"windows-sys 0.48.0",
|
"windows-sys 0.52.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@ -317,7 +317,7 @@ checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "just"
|
name = "just"
|
||||||
version = "1.17.0"
|
version = "1.18.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ansi_term",
|
"ansi_term",
|
||||||
"atty",
|
"atty",
|
||||||
@ -459,9 +459,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "proc-macro2"
|
name = "proc-macro2"
|
||||||
version = "1.0.70"
|
version = "1.0.71"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "39278fbbf5fb4f646ce651690877f89d1c5811a3d4acb27700c1cb3cdb78fd3b"
|
checksum = "75cb1540fadbd5b8fbccc4dddad2734eba435053f725621c070711a14bb5f4b8"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"unicode-ident",
|
"unicode-ident",
|
||||||
]
|
]
|
||||||
@ -597,7 +597,7 @@ checksum = "43576ca501357b9b071ac53cdc7da8ef0cbd9493d8df094cd821777ea6e894d3"
|
|||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
"syn 2.0.41",
|
"syn 2.0.42",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@ -703,7 +703,7 @@ dependencies = [
|
|||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
"rustversion",
|
"rustversion",
|
||||||
"syn 2.0.41",
|
"syn 2.0.42",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@ -719,9 +719,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "syn"
|
name = "syn"
|
||||||
version = "2.0.41"
|
version = "2.0.42"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "44c8b28c477cc3bf0e7966561e3460130e1255f7a1cf71931075f1c5e7a7e269"
|
checksum = "5b7d0a2c048d661a1a59fcd7355baa232f7ed34e0ee4df2eef3c1c1c0d3852d8"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "just"
|
name = "just"
|
||||||
version = "1.17.0"
|
version = "1.18.0"
|
||||||
authors = ["Casey Rodarmor <casey@rodarmor.com>"]
|
authors = ["Casey Rodarmor <casey@rodarmor.com>"]
|
||||||
autotests = false
|
autotests = false
|
||||||
categories = ["command-line-utilities", "development-tools"]
|
categories = ["command-line-utilities", "development-tools"]
|
||||||
|
32
man/just.1
32
man/just.1
@ -1,9 +1,9 @@
|
|||||||
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.3.
|
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.3.
|
||||||
.TH JUST "1" "December 2023" "just 1.17.0" "Just Manual"
|
.TH JUST "1" "December 2023" "just 1.18.0" "Just Manual"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
just \- save and run commands
|
just \- save and run commands
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
just 1.17.0
|
just 1.18.0
|
||||||
\- Please see https://github.com/casey/just for more information.
|
\- Please see https://github.com/casey/just for more information.
|
||||||
.SS "USAGE:"
|
.SS "USAGE:"
|
||||||
.IP
|
.IP
|
||||||
@ -14,13 +14,12 @@ just [FLAGS] [OPTIONS] [\-\-] [ARGUMENTS]...
|
|||||||
Print changelog
|
Print changelog
|
||||||
.TP
|
.TP
|
||||||
\fB\-\-check\fR
|
\fB\-\-check\fR
|
||||||
Run `\-\-fmt` in 'check' mode. Exits with 0 if justfile is formatted
|
Run `\-\-fmt` in 'check' mode. Exits with 0 if justfile is formatted correctly. Exits with 1
|
||||||
correctly. Exits with 1 and prints a diff if formatting is required.
|
and prints a diff if formatting is required.
|
||||||
.TP
|
.TP
|
||||||
\fB\-\-choose\fR
|
\fB\-\-choose\fR
|
||||||
Select one or more recipes to run using a binary chooser. If `\-\-chooser` is
|
Select one or more recipes to run using a binary chooser. If `\-\-chooser` is not passed the
|
||||||
not passed the chooser defaults to the value of $JUST_CHOOSER, falling back
|
chooser defaults to the value of $JUST_CHOOSER, falling back to `fzf`
|
||||||
to `fzf`
|
|
||||||
.TP
|
.TP
|
||||||
\fB\-\-clear\-shell\-args\fR
|
\fB\-\-clear\-shell\-args\fR
|
||||||
Clear shell arguments
|
Clear shell arguments
|
||||||
@ -32,12 +31,11 @@ Print what just would do without doing it
|
|||||||
Print justfile
|
Print justfile
|
||||||
.TP
|
.TP
|
||||||
\fB\-e\fR, \fB\-\-edit\fR
|
\fB\-e\fR, \fB\-\-edit\fR
|
||||||
Edit justfile with editor given by $VISUAL or $EDITOR, falling back to
|
Edit justfile with editor given by $VISUAL or $EDITOR, falling back to `vim`
|
||||||
`vim`
|
|
||||||
.TP
|
.TP
|
||||||
\fB\-\-evaluate\fR
|
\fB\-\-evaluate\fR
|
||||||
Evaluate and print all variables. If a variable name is given as an
|
Evaluate and print all variables. If a variable name is given as an argument, only print
|
||||||
argument, only print that variable's value.
|
that variable's value.
|
||||||
.TP
|
.TP
|
||||||
\fB\-\-fmt\fR
|
\fB\-\-fmt\fR
|
||||||
Format and overwrite justfile
|
Format and overwrite justfile
|
||||||
@ -102,20 +100,16 @@ Run an arbitrary command with the working directory, `.env`, overrides, and expo
|
|||||||
.HP
|
.HP
|
||||||
\fB\-\-command\-color\fR <COMMAND\-COLOR>
|
\fB\-\-command\-color\fR <COMMAND\-COLOR>
|
||||||
.IP
|
.IP
|
||||||
Echo recipe lines in <COMMAND\-COLOR> [possible values: black, blue, cyan, green, purple, red,
|
Echo recipe lines in <COMMAND\-COLOR> [possible values: black, blue, cyan, green, purple, red, yellow]
|
||||||
yellow]
|
|
||||||
.HP
|
.HP
|
||||||
\fB\-\-completions\fR <SHELL>
|
\fB\-\-completions\fR <SHELL>
|
||||||
.IP
|
.IP
|
||||||
Print shell completion script for <SHELL> [possible values: zsh, bash, fish, powershell,
|
Print shell completion script for <SHELL> [possible values: zsh, bash, fish, powershell, elvish]
|
||||||
elvish]
|
.TP
|
||||||
.HP
|
|
||||||
\fB\-\-dotenv\-filename\fR <DOTENV\-FILENAME>
|
\fB\-\-dotenv\-filename\fR <DOTENV\-FILENAME>
|
||||||
.IP
|
|
||||||
Search for environment file named <DOTENV\-FILENAME> instead of `.env`
|
Search for environment file named <DOTENV\-FILENAME> instead of `.env`
|
||||||
.HP
|
.TP
|
||||||
\fB\-\-dotenv\-path\fR <DOTENV\-PATH>
|
\fB\-\-dotenv\-path\fR <DOTENV\-PATH>
|
||||||
.IP
|
|
||||||
Load environment file at <DOTENV\-PATH> instead of searching for one
|
Load environment file at <DOTENV\-PATH> instead of searching for one
|
||||||
.HP
|
.HP
|
||||||
\fB\-\-dump\-format\fR <FORMAT>
|
\fB\-\-dump\-format\fR <FORMAT>
|
||||||
|
Loading…
Reference in New Issue
Block a user