Release 1.20.0 (#1793)
- Bump version: 1.19.0 → 1.20.0 - Update changelog - Update changelog contributor credits - Update dependencies - Update man page - Update version references in readme
This commit is contained in:
parent
f039701f71
commit
7c2e699923
15
CHANGELOG.md
15
CHANGELOG.md
@ -1,6 +1,21 @@
|
|||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
[1.20.0](https://github.com/casey/just/releases/tag/1.20.0) - 2023-12-28
|
||||||
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- Allow mod statements with path to source file ([#1786](https://github.com/casey/just/pull/1786))
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Expand tilde in import and module paths ([#1792](https://github.com/casey/just/pull/1792))
|
||||||
|
- Override imported recipes ([#1790](https://github.com/casey/just/pull/1790))
|
||||||
|
- Run recipes with working directory set to submodule directory ([#1788](https://github.com/casey/just/pull/1788))
|
||||||
|
|
||||||
|
### Misc
|
||||||
|
- Document import override behavior ([#1791](https://github.com/casey/just/pull/1791))
|
||||||
|
- Document submodule working directory ([#1789](https://github.com/casey/just/pull/1789))
|
||||||
|
|
||||||
[1.19.0](https://github.com/casey/just/releases/tag/1.19.0) - 2023-12-27
|
[1.19.0](https://github.com/casey/just/releases/tag/1.19.0) - 2023-12-27
|
||||||
------------------------------------------------------------------------
|
------------------------------------------------------------------------
|
||||||
|
|
||||||
|
12
Cargo.lock
generated
12
Cargo.lock
generated
@ -321,13 +321,13 @@ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "is-terminal"
|
name = "is-terminal"
|
||||||
version = "0.4.9"
|
version = "0.4.10"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b"
|
checksum = "0bad00257d07be169d870ab665980b06cdb366d792ad690bf2e76876dc503455"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"hermit-abi 0.3.3",
|
"hermit-abi 0.3.3",
|
||||||
"rustix",
|
"rustix",
|
||||||
"windows-sys 0.48.0",
|
"windows-sys 0.52.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@ -338,7 +338,7 @@ checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "just"
|
name = "just"
|
||||||
version = "1.19.0"
|
version = "1.20.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ansi_term",
|
"ansi_term",
|
||||||
"atty",
|
"atty",
|
||||||
@ -425,9 +425,9 @@ checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "memchr"
|
name = "memchr"
|
||||||
version = "2.6.4"
|
version = "2.7.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167"
|
checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "nix"
|
name = "nix"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "just"
|
name = "just"
|
||||||
version = "1.19.0"
|
version = "1.20.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"]
|
||||||
|
@ -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.19.0" "Just Manual"
|
.TH JUST "1" "December 2023" "just 1.20.0" "Just Manual"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
just \- save and run commands
|
just \- save and run commands
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
just 1.19.0
|
just 1.20.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
|
||||||
|
Loading…
Reference in New Issue
Block a user