From ee6c4c24c198d057443cbbe27cff5f27609ce8da Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Tue, 7 Jul 2026 23:57:57 +0200 Subject: [PATCH 1/2] Migrate to new `str lowercase` command (nushell/nushell#18364) Changes made in this commit will fix #132 --- nupm/utils/dirs.nu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nupm/utils/dirs.nu b/nupm/utils/dirs.nu index 108f964..07988c7 100644 --- a/nupm/utils/dirs.nu +++ b/nupm/utils/dirs.nu @@ -62,13 +62,13 @@ export def nupm-home-prompt [--no-confirm]: nothing -> bool { mut answer = '' - while ($answer | str downcase) not-in [ y n ] { + while ($answer | str lowercase) not-in [ y n ] { $answer = (input ( $'Root directory "($env.NUPM_HOME)" does not exist.' + ' Do you want to create it? [y/n] ')) } - if ($answer | str downcase) not-in [ y Y ] { + if ($answer | str lowercase) not-in [ y Y ] { return false } From 8bf768c6c48c748914652031eefe76910be4bc1d Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Wed, 8 Jul 2026 11:53:59 +0200 Subject: [PATCH 2/2] ci: upgrade CI nu version to 0.114.0 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d66d088..1281101 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: - uses: hustcer/setup-nu@v3.10 with: - version: "0.110.0" + version: "0.114.0" - name: Show Nushell Version run: version