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

+34
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

+16-22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
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 <[email protected]>"]
55
autotests = false
66
categories = ["command-line-utilities", "development-tools"]

tests/misc.rs

+1-1
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)