Skip to content

Commit 0eb2a06

Browse files
authored
Release 1.28.0 (#2131)
- Bump version: 1.27.0 β†’ 1.28.0 - Update changelog - Update changelog contributor credits - Update dependencies
1 parent 3c40c0c commit 0eb2a06

File tree

4 files changed

+52
-24
lines changed

4 files changed

+52
-24
lines changed

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,40 @@
11
Changelog
22
=========
33

4+
[1.28.0](https://github.com/casey/just/releases/tag/1.28.0) - 2024-06-05
5+
------------------------------------------------------------------------
6+
7+
### Changed
8+
- Write shebang recipes to $XDG_RUNTIME_DIR ([#2128](https://github.com/casey/just/pull/2128))
9+
- Add `set dotenv-required` to require an environment file ([#2116](https://github.com/casey/just/pull/2116))
10+
- Don't display submodule recipes in `--list` ([#2112](https://github.com/casey/just/pull/2112))
11+
12+
### Added
13+
- Allow listing recipes in submodules with `--list-submodules` ([#2113](https://github.com/casey/just/pull/2113))
14+
- Show recipes in submodules with `--show RECIPE::PATH` ([#2111](https://github.com/casey/just/pull/2111))
15+
- Add `--timestamp-format` ([#2106](https://github.com/casey/just/pull/2106) by [neunenak](https://github.com/neunenak))
16+
- Allow listing submodule recipes with `--list PATH` ([#2108](https://github.com/casey/just/pull/2108))
17+
- Print recipe command timestamps with `--timestamps` ([#2084](https://github.com/casey/just/pull/2084) by [neunenak](https://github.com/neunenak))
18+
- Add `module_file()` and `module_directory()` functions ([#2105](https://github.com/casey/just/pull/2105))
19+
20+
### Fixed
21+
- Use space-separated recipe paths in `--choose` ([#2115](https://github.com/casey/just/pull/2115))
22+
- Fix bash completion for aliases ([#2104](https://github.com/casey/just/pull/2104) by [laniakea64](https://github.com/laniakea64))
23+
24+
### Misc
25+
- Don't check in manpage ([#2130](https://github.com/casey/just/pull/2130))
26+
- Document default shell ([#2129](https://github.com/casey/just/pull/2129))
27+
- Remove duplicate section in Chinese readme ([#2127](https://github.com/casey/just/pull/2127) by [potterxu](https://github.com/potterxu))
28+
- Update Chinese readme ([#2124](https://github.com/casey/just/pull/2124) by [potterxu](https://github.com/potterxu))
29+
- Fix typo in readme ([#2122](https://github.com/casey/just/pull/2122) by [potterxu](https://github.com/potterxu))
30+
- Don't check in auto-generated completion scripts ([#2120](https://github.com/casey/just/pull/2120))
31+
- Document when dependencies run in readme ([#2103](https://github.com/casey/just/pull/2103))
32+
- Build aarch64-pc-windows-msvc release binaries ([#2100](https://github.com/casey/just/pull/2100) by [alshdavid](https://github.com/alshdavid))
33+
- Clarify that `dotenv-path`-given env file is required ([#2099](https://github.com/casey/just/pull/2099))
34+
- Print multi-line doc comments before recipe in `--list` ([#2090](https://github.com/casey/just/pull/2090))
35+
- List unsorted imported recipes by import depth and offset ([#2092](https://github.com/casey/just/pull/2092))
36+
- Update README.md ([#2091](https://github.com/casey/just/pull/2091) by [laniakea64](https://github.com/laniakea64))
37+
438
[1.27.0](https://github.com/casey/just/releases/tag/1.27.0) - 2024-05-25
539
------------------------------------------------------------------------
640

β€ŽCargo.lockβ€Ž

Lines changed: 16 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€ŽCargo.tomlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "just"
3-
version = "1.27.0"
3+
version = "1.28.0"
44
authors = ["Casey Rodarmor <casey@rodarmor.com>"]
55
autotests = false
66
categories = ["command-line-utilities", "development-tools"]

β€Žtests/misc.rsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -884,7 +884,7 @@ _private-recipe:
884884
args: ("--list"),
885885
stdout: r#"
886886
Available recipes:
887-
a Z="\t z" # something else
887+
a Z="\t z" # something else
888888
hello a b='B ' c='C' # this does a thing
889889
"#,
890890
}

0 commit comments

Comments
Β (0)