rust-just 1.42.4 → 1.43.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.
- package/CHANGELOG.md +19 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,25 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
+
[1.43.0](https://github.com/casey/just/releases/tag/1.43.0) - 2025-09-27
|
|
5
|
+
------------------------------------------------------------------------
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Add `[default]` attribute ([#2878](https://github.com/casey/just/pull/2878) by [casey](https://github.com/casey))
|
|
9
|
+
- Do not ascend above `--ceiling` when looking for justfile ([#2870](https://github.com/casey/just/pull/2870) by [casey](https://github.com/casey))
|
|
10
|
+
|
|
11
|
+
### Misc
|
|
12
|
+
- Don't generate completions at runtime ([#2896](https://github.com/casey/just/pull/2896) by [casey](https://github.com/casey))
|
|
13
|
+
- Update `softprops/action-gh-release` to 2.3.3 ([#2879](https://github.com/casey/just/pull/2879) by [app/dependabot](https://github.com/app/dependabot))
|
|
14
|
+
- Add submodule alias and dependency targets to grammar ([#2877](https://github.com/casey/just/pull/2877) by [casey](https://github.com/casey))
|
|
15
|
+
- Bump `actions/checkout` to v5 ([#2864](https://github.com/casey/just/pull/2864) by [app/dependabot](https://github.com/app/dependabot))
|
|
16
|
+
- Fix Windows `PATH_SEP` value in readme ([#2859](https://github.com/casey/just/pull/2859) by [casey](https://github.com/casey))
|
|
17
|
+
- Fix lints for Rust 1.89 ([#2860](https://github.com/casey/just/pull/2860) by [casey](https://github.com/casey))
|
|
18
|
+
- Note that Debian 13 has been released ([#2856](https://github.com/casey/just/pull/2856) by [sblondon](https://github.com/sblondon))
|
|
19
|
+
- Mention `just-mcp` in readme ([#2843](https://github.com/casey/just/pull/2843) by [casey](https://github.com/casey))
|
|
20
|
+
- Expand Windows instructions in readme ([#2842](https://github.com/casey/just/pull/2842) by [casey](https://github.com/casey))
|
|
21
|
+
- Note `[parallel]` attribute in parallelism section ([#2837](https://github.com/casey/just/pull/2837) by [casey](https://github.com/casey))
|
|
22
|
+
|
|
4
23
|
[1.42.4](https://github.com/casey/just/releases/tag/1.42.4) - 2025-07-24
|
|
5
24
|
------------------------------------------------------------------------
|
|
6
25
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rust-just",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.43.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.
|
|
56
|
-
"rust-just-darwin-x64": "1.
|
|
57
|
-
"rust-just-linux-arm": "1.
|
|
58
|
-
"rust-just-linux-arm64": "1.
|
|
59
|
-
"rust-just-linux-x64": "1.
|
|
60
|
-
"rust-just-windows-arm64": "1.
|
|
61
|
-
"rust-just-windows-x64": "1.
|
|
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"
|
|
62
62
|
},
|
|
63
63
|
"eslintConfig": {
|
|
64
64
|
"extends": [
|