Skip to content

Commit 8eea534

Browse files
authored
Release 1.44.0 (#2994)
- Bump version: 1.43.1 β†’ 1.44.0 - Update changelog - Update changelog contributor credits - Update dependencies - Update version references in readme
1 parent 7919940 commit 8eea534

File tree

4 files changed

+60
-39
lines changed

4 files changed

+60
-39
lines changed

β€ŽCHANGELOG.mdβ€Ž

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

4+
[1.44.0](https://github.com/casey/just/releases/tag/1.44.0) - 2025-12-06
5+
------------------------------------------------------------------------
6+
7+
### Added
8+
- Add f'{format}' strings ([#2985](https://github.com/casey/just/pull/2985) by [casey](https://github.com/casey))
9+
- Use double braces `{{…}}` for format strings ([#2993](https://github.com/casey/just/pull/2993) by [casey](https://github.com/casey))
10+
- Stabilize `[script]` attribute ([#2988](https://github.com/casey/just/pull/2988) by [casey](https://github.com/casey))
11+
12+
### Changed
13+
- Allow newlines in interpolations and `}` to abut interpolation `}}` ([#2992](https://github.com/casey/just/pull/2992) by [casey](https://github.com/casey))
14+
15+
### Misc
16+
- Test format strings with conditionals ([#2991](https://github.com/casey/just/pull/2991) by [casey](https://github.com/casey))
17+
- Move StringState into module ([#2989](https://github.com/casey/just/pull/2989) by [casey](https://github.com/casey))
18+
- Test undefined variable in format string error ([#2987](https://github.com/casey/just/pull/2987) by [casey](https://github.com/casey))
19+
- Update `softprops/action-gh-release` to 2.5.0 ([#2979](https://github.com/casey/just/pull/2979) by [app/dependabot](https://github.com/app/dependabot))
20+
- Link to `just-lsp` in readme ([#2846](https://github.com/casey/just/pull/2846) by [terror](https://github.com/terror))
21+
- Fix `just --list` submodule example in readme ([#2973](https://github.com/casey/just/pull/2973) by [neodejack](https://github.com/neodejack))
22+
- Update `actions/checkout` ([#2969](https://github.com/casey/just/pull/2969) by [app/dependabot](https://github.com/app/dependabot))
23+
- Disable mdbook-linkcheck ([#2970](https://github.com/casey/just/pull/2970) by [casey](https://github.com/casey))
24+
425
[1.43.1](https://github.com/casey/just/releases/tag/1.43.1) - 2025-11-12
526
------------------------------------------------------------------------
627

β€ŽCargo.lockβ€Ž

Lines changed: 37 additions & 37 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.43.1"
3+
version = "1.44.0"
44
authors = ["Casey Rodarmor <casey@rodarmor.com>"]
55
autotests = false
66
categories = ["command-line-utilities", "development-tools"]

β€ŽREADME.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1603,7 +1603,7 @@ depend on `just` variables and `.env` files.
16031603

16041604
#### Format strings
16051605

1606-
Strings prefixed with `f` are format strings<sup>master</sup>:
1606+
Strings prefixed with `f` are format strings<sup>1.44.0</sup>:
16071607

16081608
```justfile
16091609
name := "world"

0 commit comments

Comments
Β (0)