From 2e603cbde95db6f3d772a60c74bc1799e8ab855c Mon Sep 17 00:00:00 2001 From: Brynley Llewellyn-Roux Date: Wed, 26 Mar 2025 14:14:16 +1100 Subject: [PATCH 1/2] fix: correctly surround `$nodejs` variable --- scripts/choco-install.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/choco-install.ps1 b/scripts/choco-install.ps1 index 81035ea..bb763af 100755 --- a/scripts/choco-install.ps1 +++ b/scripts/choco-install.ps1 @@ -23,7 +23,7 @@ choco source add --name="cache" --source="${PSScriptRoot}\..\tmp\chocolatey" --p # Install nodejs v20.5.1 (will use cache if exists) $nodejs = "nodejs" -choco install '$nodejs' --version='20.5.1' --require-checksums -y --no-progress +choco install "$nodejs" --version='20.5.1' --require-checksums -y --no-progress # Internalise nodejs to cache if doesn't exist if ( -not (Test-Path -Path "${PSScriptRoot}\..\tmp\chocolatey\$nodejs\$nodejs.20.5.1.nupkg" -PathType Leaf) ) { Save-ChocoPackage -PackageName $nodejs From 9eb0fcc7aebe425f4d35d6ad1606a7221eca0df5 Mon Sep 17 00:00:00 2001 From: Brynley Llewellyn-Roux Date: Wed, 26 Mar 2025 14:15:44 +1100 Subject: [PATCH 2/2] 2.0.2 --- package-lock.json | 6 +++--- package.json | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index eaa9720..4f85bc4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@matrixai/mdns", - "version": "2.0.1", + "version": "2.0.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@matrixai/mdns", - "version": "2.0.1", + "version": "2.0.2", "license": "Apache-2.0", "dependencies": { "@matrixai/async-cancellable": "^2.0.1", @@ -51,7 +51,7 @@ "node": "^20.5.1" }, "optionalDependencies": { - "@matrixai/mdns-linux-x64": "2.0.1" + "@matrixai/mdns-linux-x64": "2.0.2" } }, "node_modules/@ampproject/remapping": { diff --git a/package.json b/package.json index d8675e8..ac70bed 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@matrixai/mdns", - "version": "2.0.1", + "version": "2.0.2", "author": "Matrix AI", "contributors": [ { @@ -62,7 +62,7 @@ "ip-num": "^1.5.1" }, "optionalDependencies": { - "@matrixai/mdns-linux-x64": "2.0.1" + "@matrixai/mdns-linux-x64": "2.0.2" }, "devDependencies": { "@fast-check/jest": "^2.1.0",