rust-just 1.48.0 → 1.48.1
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.
- package/CHANGELOG.md +12 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
+
[1.48.1](https://github.com/casey/just/releases/tag/1.48.1) - 2026-03-27
|
|
5
|
+
------------------------------------------------------------------------
|
|
6
|
+
|
|
7
|
+
- Fix bash completion of command lines containing `:` ([#3205](https://github.com/casey/just/pull/3205) by [casey](https://github.com/casey))
|
|
8
|
+
- Call zsh completion function when first auto-loaded ([#3199](https://github.com/casey/just/pull/3199) by [casey](https://github.com/casey))
|
|
9
|
+
- Fix `--set` missing value error message interpolation ([#3198](https://github.com/casey/just/pull/3198) by [cuiweixie](https://github.com/cuiweixie))
|
|
10
|
+
- Add `#compdef` to zsh completion script ([#3197](https://github.com/casey/just/pull/3197) by [casey](https://github.com/casey))
|
|
11
|
+
- Add instructions for alias completions in bash ([#3190](https://github.com/casey/just/pull/3190) by [casey](https://github.com/casey))
|
|
12
|
+
- Remove redundant clap derive attributes ([#3183](https://github.com/casey/just/pull/3183) by [casey](https://github.com/casey))
|
|
13
|
+
- Move files into etc/ ([#3182](https://github.com/casey/just/pull/3182) by [casey](https://github.com/casey))
|
|
14
|
+
- Update stable features in readme ([#3181](https://github.com/casey/just/pull/3181) by [casey](https://github.com/casey))
|
|
15
|
+
|
|
4
16
|
[1.48.0](https://github.com/casey/just/releases/tag/1.48.0) - 2026-03-23
|
|
5
17
|
------------------------------------------------------------------------
|
|
6
18
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rust-just",
|
|
3
|
-
"version": "1.48.
|
|
3
|
+
"version": "1.48.1",
|
|
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.48.
|
|
56
|
-
"rust-just-darwin-x64": "1.48.
|
|
57
|
-
"rust-just-linux-arm": "1.48.
|
|
58
|
-
"rust-just-linux-arm64": "1.48.
|
|
59
|
-
"rust-just-linux-x64": "1.48.
|
|
60
|
-
"rust-just-windows-arm64": "1.48.
|
|
61
|
-
"rust-just-windows-x64": "1.48.
|
|
55
|
+
"rust-just-darwin-arm64": "1.48.1",
|
|
56
|
+
"rust-just-darwin-x64": "1.48.1",
|
|
57
|
+
"rust-just-linux-arm": "1.48.1",
|
|
58
|
+
"rust-just-linux-arm64": "1.48.1",
|
|
59
|
+
"rust-just-linux-x64": "1.48.1",
|
|
60
|
+
"rust-just-windows-arm64": "1.48.1",
|
|
61
|
+
"rust-just-windows-x64": "1.48.1"
|
|
62
62
|
},
|
|
63
63
|
"eslintConfig": {
|
|
64
64
|
"extends": [
|