rust-just 1.37.0 → 1.38.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 +24 -0
- package/README.md +3 -3
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,30 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
+
[1.38.0](https://github.com/casey/just/releases/tag/1.38.0) - 2024-12-10
|
|
5
|
+
------------------------------------------------------------------------
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Add `[openbsd]` recipe attribute ([#2497](https://github.com/casey/just/pull/2497) by [vtamara](https://github.com/vtamara))
|
|
9
|
+
- Add `[working-directory]` recipe attribute ([#2438](https://github.com/casey/just/pull/2438) by [bcheidemann](https://github.com/bcheidemann))
|
|
10
|
+
- Add `--allow-missing` to ignore missing recipe and submodule errors ([#2460](https://github.com/casey/just/pull/2460) by [R3ZV](https://github.com/R3ZV))
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- Add snap package back to readme ([#2506](https://github.com/casey/just/pull/2506) by [casey](https://github.com/casey))
|
|
14
|
+
- Forbid duplicate non-repeatable attributes ([#2483](https://github.com/casey/just/pull/2483) by [casey](https://github.com/casey))
|
|
15
|
+
|
|
16
|
+
### Misc
|
|
17
|
+
- Publish docs to GitHub pages on release only ([#2516](https://github.com/casey/just/pull/2516) by [casey](https://github.com/casey))
|
|
18
|
+
- Note lack of support for string interpolation ([#2515](https://github.com/casey/just/pull/2515) by [casey](https://github.com/casey))
|
|
19
|
+
- Embolden help text errors ([#2502](https://github.com/casey/just/pull/2502) by [casey](https://github.com/casey))
|
|
20
|
+
- Style help text ([#2501](https://github.com/casey/just/pull/2501) by [casey](https://github.com/casey))
|
|
21
|
+
- Add `--request` subcommand for testing ([#2498](https://github.com/casey/just/pull/2498) by [casey](https://github.com/casey))
|
|
22
|
+
- [bin/forbid] Improve error message if ripgrep is missing ([#2493](https://github.com/casey/just/pull/2493) by [casey](https://github.com/casey))
|
|
23
|
+
- Fix Rust 1.83 clippy warnings ([#2487](https://github.com/casey/just/pull/2487) by [casey](https://github.com/casey))
|
|
24
|
+
- Refactor JSON tests ([#2484](https://github.com/casey/just/pull/2484) by [casey](https://github.com/casey))
|
|
25
|
+
- Get `Config` from `ExecutionContext` instead of passing separately ([#2481](https://github.com/casey/just/pull/2481) by [casey](https://github.com/casey))
|
|
26
|
+
- Don't write justfiles unchanged by formatting ([#2479](https://github.com/casey/just/pull/2479) by [casey](https://github.com/casey))
|
|
27
|
+
|
|
4
28
|
[1.37.0](https://github.com/casey/just/releases/tag/1.37.0) - 2024-11-20
|
|
5
29
|
------------------------------------------------------------------------
|
|
6
30
|
|
package/README.md
CHANGED
|
@@ -29,13 +29,13 @@ inspired by `make`
|
|
|
29
29
|
|
|
30
30
|
### Run instantly without installation
|
|
31
31
|
|
|
32
|
-
The recommended way to run `rust-just` is by using <a href="https://www.npmjs.com/package/npx">`npx`</a>:
|
|
32
|
+
The recommended way to run `rust-just` without installing it on your system is by using <a href="https://www.npmjs.com/package/npx">`npx`</a>:
|
|
33
33
|
|
|
34
34
|
```
|
|
35
35
|
~/$ npx rust-just@latest [OPTIONS] [ARGUMENTS]...
|
|
36
36
|
```
|
|
37
37
|
|
|
38
|
-
It will run the most recent version of `rust-just
|
|
38
|
+
It will run the most recent version of `rust-just`.
|
|
39
39
|
|
|
40
40
|
### Installation as global dependency
|
|
41
41
|
|
|
@@ -51,7 +51,7 @@ and then run with:
|
|
|
51
51
|
~/$ rust-just [OPTIONS] [ARGUMENTS]...
|
|
52
52
|
```
|
|
53
53
|
|
|
54
|
-
### Installation as local dependency
|
|
54
|
+
### Installation as local dependency
|
|
55
55
|
|
|
56
56
|
```
|
|
57
57
|
~/$ npm install rust-just
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rust-just",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.38.0",
|
|
4
4
|
"description": "🤖 Just a command runner",
|
|
5
5
|
"bin": "lib/index.mjs",
|
|
6
6
|
"exports": {
|
|
@@ -49,13 +49,13 @@
|
|
|
49
49
|
"typescript": "^5.3.3"
|
|
50
50
|
},
|
|
51
51
|
"optionalDependencies": {
|
|
52
|
-
"rust-just-darwin-arm64": "1.
|
|
53
|
-
"rust-just-darwin-x64": "1.
|
|
54
|
-
"rust-just-linux-arm": "1.
|
|
55
|
-
"rust-just-linux-arm64": "1.
|
|
56
|
-
"rust-just-linux-x64": "1.
|
|
57
|
-
"rust-just-windows-arm64": "1.
|
|
58
|
-
"rust-just-windows-x64": "1.
|
|
52
|
+
"rust-just-darwin-arm64": "1.38.0",
|
|
53
|
+
"rust-just-darwin-x64": "1.38.0",
|
|
54
|
+
"rust-just-linux-arm": "1.38.0",
|
|
55
|
+
"rust-just-linux-arm64": "1.38.0",
|
|
56
|
+
"rust-just-linux-x64": "1.38.0",
|
|
57
|
+
"rust-just-windows-arm64": "1.38.0",
|
|
58
|
+
"rust-just-windows-x64": "1.38.0"
|
|
59
59
|
},
|
|
60
60
|
"eslintConfig": {
|
|
61
61
|
"extends": [
|