rust-just 1.43.0 → 1.44.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +38 -0
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -1,6 +1,44 @@
1
1
  Changelog
2
2
  =========
3
3
 
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
+
25
+ [1.43.1](https://github.com/casey/just/releases/tag/1.43.1) - 2025-11-12
26
+ ------------------------------------------------------------------------
27
+
28
+ ### Fixed
29
+ - Only initialize signal handler once ([#2953](https://github.com/casey/just/pull/2953) by [casey](https://github.com/casey))
30
+ - Preserve module docs when formatting ([#2931](https://github.com/casey/just/pull/2931) by [casey](https://github.com/casey))
31
+ - Preserve module groups when formatting ([#2930](https://github.com/casey/just/pull/2930) by [casey](https://github.com/casey))
32
+ - Don't suggest private recipes and aliases ([#2916](https://github.com/casey/just/pull/2916) by [casey](https://github.com/casey))
33
+
34
+ ### Misc
35
+ - Update softprops/action-gh-release to 2.4.2 ([#2948](https://github.com/casey/just/pull/2948) by [app/dependabot](https://github.com/app/dependabot))
36
+ - Fix `env()` usage in readme ([#2936](https://github.com/casey/just/pull/2936) by [laniakea64](https://github.com/laniakea64))
37
+ - Use a case statement to install target dependencies ([#2929](https://github.com/casey/just/pull/2929) by [casey](https://github.com/casey))
38
+ - Build loongarch64 release binaries ([#2886](https://github.com/casey/just/pull/2886) by [SkyBird233](https://github.com/SkyBird233))
39
+ - Bump softprops/action-gh-release to 2.4.1 ([#2919](https://github.com/casey/just/pull/2919) by [app/dependabot](https://github.com/app/dependabot))
40
+ - Update softprops/action-gh-release to 2.3.4 ([#2910](https://github.com/casey/just/pull/2910) by [app/dependabot](https://github.com/app/dependabot))
41
+
4
42
  [1.43.0](https://github.com/casey/just/releases/tag/1.43.0) - 2025-09-27
5
43
  ------------------------------------------------------------------------
6
44
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rust-just",
3
- "version": "1.43.0",
3
+ "version": "1.44.0",
4
4
  "description": "🤖 Just a command runner",
5
5
  "bin": {
6
6
  "just": "lib/index.mjs",
@@ -52,13 +52,13 @@
52
52
  "typescript": "^5.7.3"
53
53
  },
54
54
  "optionalDependencies": {
55
- "rust-just-darwin-arm64": "1.43.0",
56
- "rust-just-darwin-x64": "1.43.0",
57
- "rust-just-linux-arm": "1.43.0",
58
- "rust-just-linux-arm64": "1.43.0",
59
- "rust-just-linux-x64": "1.43.0",
60
- "rust-just-windows-arm64": "1.43.0",
61
- "rust-just-windows-x64": "1.43.0"
55
+ "rust-just-darwin-arm64": "1.44.0",
56
+ "rust-just-darwin-x64": "1.44.0",
57
+ "rust-just-linux-arm": "1.44.0",
58
+ "rust-just-linux-arm64": "1.44.0",
59
+ "rust-just-linux-x64": "1.44.0",
60
+ "rust-just-windows-arm64": "1.44.0",
61
+ "rust-just-windows-x64": "1.44.0"
62
62
  },
63
63
  "eslintConfig": {
64
64
  "extends": [