From fcde8dc8704733b40f01588d25d10a41e792b522 Mon Sep 17 00:00:00 2001 From: Ian Manske Date: Tue, 30 Apr 2024 21:43:36 +0000 Subject: [PATCH] Update release script (#828) Add new crates to the release script and updates the order of existing crates according to the `nu_deps.nu` script. --- make_release/Readme.md | 2 +- make_release/nu_release.nu | 13 +++++++++---- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/make_release/Readme.md b/make_release/Readme.md index 7599a457..c061d3aa 100644 --- a/make_release/Readme.md +++ b/make_release/Readme.md @@ -27,7 +27,7 @@ - [ ] in the repo of Nushell, run `/path/to/nu_scripts/make_release/bump-version.nu` - [ ] then, ensure there are no compilation errors with any combination of features by running: ```nushell - cargo hack --all --feature-powerset --skip default-no-clipboard,stable,wasi,mimalloc check + cargo hack --all --feature-powerset --skip default-no-clipboard,stable,mimalloc check ``` (this will take a while...) - [ ] check for build errors by running: diff --git a/make_release/nu_release.nu b/make_release/nu_release.nu index 67ec9551..4dc76cb0 100644 --- a/make_release/nu_release.nu +++ b/make_release/nu_release.nu @@ -12,12 +12,16 @@ export def main [] { nu-test-support, nu-protocol, nu-engine, - nu-plugin, + nu-plugin-protocol, nu-color-config, - nu-parser, - nu-plugin-test-support - nu-std, + nu-plugin-core, + nu-plugin-engine, nu-table, + nu-cmd-plugin, + nu-parser, + nu-plugin, + nu-std, + nuon, nu-cmd-base, ] @@ -29,6 +33,7 @@ export def main [] { let subcrates_wave_3 = [ nu-command, nu-explore, + nu-plugin-test-support, nu-cli, nu-cmd-dataframe, nu-cmd-extra,