From 4c76fd1ed36b0e7a915812f96b0bb52c799283ec Mon Sep 17 00:00:00 2001 From: Jens Oliver Meiert Date: Thu, 17 Oct 2024 15:00:33 +0200 Subject: [PATCH 1/2] fix: update dependency names and versions Renamed 'bin-check' to 'binary-check' and 'bin-version-check' to 'binary-version-check'. Also updated their respective version numbers in package.json. (This commit message was AI-generated.) Signed-off-by: Jens Oliver Meiert --- index.js | 4 ++-- package.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/index.js b/index.js index 1aba001..faf654a 100644 --- a/index.js +++ b/index.js @@ -5,8 +5,8 @@ const url = require('url'); const pify = require('pify'); const importLazy = require('import-lazy')(require); -const binCheck = importLazy('bin-check'); -const binVersionCheck = importLazy('bin-version-check'); +const binCheck = importLazy('binary-check'); +const binVersionCheck = importLazy('binary-version-check'); const download = importLazy('download'); const osFilterObj = importLazy('os-filter-obj'); diff --git a/package.json b/package.json index e49e305..64328c7 100644 --- a/package.json +++ b/package.json @@ -25,8 +25,8 @@ "wrapper" ], "dependencies": { - "bin-check": "^4.1.0", - "bin-version-check": "^4.0.0", + "binary-version": "^7.1.0", + "binary-version-check": "^6.1.0", "download": "^7.1.0", "import-lazy": "^3.1.0", "os-filter-obj": "^2.0.0", From 0c515322550e109e43142f88304d0bcded4ee115 Mon Sep 17 00:00:00 2001 From: Jens Oliver Meiert Date: Thu, 17 Oct 2024 15:01:00 +0200 Subject: [PATCH 2/2] fix: bump bin-wrapper to version 4.1.1 Updated the package version from 4.1.0 to 4.1.1 to include recent fixes and improvements. This ensures users have the latest stable release. (This commit message was AI-generated.) Signed-off-by: Jens Oliver Meiert --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 64328c7..cde3adf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bin-wrapper", - "version": "4.1.0", + "version": "4.1.1", "description": "Binary wrapper that makes your programs seamlessly available as local dependencies", "license": "MIT", "repository": "kevva/bin-wrapper",