Skip to content

Commit fcde8dc

Browse files
authored
Update release script (nushell#828)
Add new crates to the release script and updates the order of existing crates according to the `nu_deps.nu` script.
1 parent 76ab5b0 commit fcde8dc

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

make_release/Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
- [ ] in the repo of Nushell, run `/path/to/nu_scripts/make_release/bump-version.nu`
2828
- [ ] then, ensure there are no compilation errors with any combination of features by running:
2929
```nushell
30-
cargo hack --all --feature-powerset --skip default-no-clipboard,stable,wasi,mimalloc check
30+
cargo hack --all --feature-powerset --skip default-no-clipboard,stable,mimalloc check
3131
```
3232
(this will take a while...)
3333
- [ ] check for build errors by running:

make_release/nu_release.nu

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,16 @@ export def main [] {
1212
nu-test-support,
1313
nu-protocol,
1414
nu-engine,
15-
nu-plugin,
15+
nu-plugin-protocol,
1616
nu-color-config,
17+
nu-plugin-core,
18+
nu-plugin-engine,
19+
nu-table,
20+
nu-cmd-plugin,
1721
nu-parser,
18-
nu-plugin-test-support
22+
nu-plugin,
1923
nu-std,
20-
nu-table,
24+
nuon,
2125
nu-cmd-base,
2226
]
2327

@@ -29,6 +33,7 @@ export def main [] {
2933
let subcrates_wave_3 = [
3034
nu-command,
3135
nu-explore,
36+
nu-plugin-test-support,
3237
nu-cli,
3338
nu-cmd-dataframe,
3439
nu-cmd-extra,

0 commit comments

Comments
 (0)