rust-just 1.42.1 → 1.42.3
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 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,22 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
-
[1.42.
|
|
4
|
+
[1.42.3](https://github.com/casey/just/releases/tag/1.42.3) - 2025-07-18
|
|
5
|
+
------------------------------------------------------------------------
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
- Run recipes from submodules in correct directory ([#2829](https://github.com/casey/just/pull/2829) by [eisbaw](https://github.com/eisbaw))
|
|
9
|
+
|
|
10
|
+
[1.42.2](https://github.com/casey/just/releases/tag/1.42.2) - 2025-07-15
|
|
5
11
|
------------------------------------------------------------------------
|
|
6
12
|
|
|
7
13
|
### Fixed
|
|
14
|
+
- Fix scope lookup for nested submodules ([#2820](https://github.com/casey/just/pull/2820) by [casey](https://github.com/casey))
|
|
8
15
|
|
|
16
|
+
[1.42.1](https://github.com/casey/just/releases/tag/1.42.1) - 2025-07-14
|
|
17
|
+
------------------------------------------------------------------------
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
9
20
|
- Export variables to submodules ([#2816](https://github.com/casey/just/pull/2816) by [casey](https://github.com/casey))
|
|
10
21
|
- Only override root-justfile variable assignments ([#2815](https://github.com/casey/just/pull/2815) by [casey](https://github.com/casey))
|
|
11
22
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rust-just",
|
|
3
|
-
"version": "1.42.
|
|
3
|
+
"version": "1.42.3",
|
|
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.42.
|
|
56
|
-
"rust-just-darwin-x64": "1.42.
|
|
57
|
-
"rust-just-linux-arm": "1.42.
|
|
58
|
-
"rust-just-linux-arm64": "1.42.
|
|
59
|
-
"rust-just-linux-x64": "1.42.
|
|
60
|
-
"rust-just-windows-arm64": "1.42.
|
|
61
|
-
"rust-just-windows-x64": "1.42.
|
|
55
|
+
"rust-just-darwin-arm64": "1.42.3",
|
|
56
|
+
"rust-just-darwin-x64": "1.42.3",
|
|
57
|
+
"rust-just-linux-arm": "1.42.3",
|
|
58
|
+
"rust-just-linux-arm64": "1.42.3",
|
|
59
|
+
"rust-just-linux-x64": "1.42.3",
|
|
60
|
+
"rust-just-windows-arm64": "1.42.3",
|
|
61
|
+
"rust-just-windows-x64": "1.42.3"
|
|
62
62
|
},
|
|
63
63
|
"eslintConfig": {
|
|
64
64
|
"extends": [
|