From d31eaf8ed64d6d89a406084a4e366cc5089ec481 Mon Sep 17 00:00:00 2001 From: Elad Kaplan Date: Thu, 12 Mar 2026 07:22:17 +0200 Subject: [PATCH] bump version 0.3.7 --- Cargo.lock | 2 +- npm/cli-darwin-arm64/package.json | 2 +- npm/cli-darwin-x64/package.json | 2 +- npm/cli-linux-x64/package.json | 2 +- npm/cli-win32-x64/package.json | 2 +- npm/shellfirm/package.json | 10 +++++----- shellfirm/Cargo.toml | 13 +++++++++++-- 7 files changed, 21 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ac78be8..20cb32e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1708,7 +1708,7 @@ checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77" [[package]] name = "shellfirm" -version = "0.3.6" +version = "0.3.7" dependencies = [ "clap", "clap_complete", diff --git a/npm/cli-darwin-arm64/package.json b/npm/cli-darwin-arm64/package.json index 7b5461d..1424917 100644 --- a/npm/cli-darwin-arm64/package.json +++ b/npm/cli-darwin-arm64/package.json @@ -1,6 +1,6 @@ { "name": "@shellfirm/cli-darwin-arm64", - "version": "0.3.6", + "version": "0.3.7", "description": "shellfirm binary for macOS ARM64", "license": "MIT", "os": [ diff --git a/npm/cli-darwin-x64/package.json b/npm/cli-darwin-x64/package.json index ca7b0b5..a7d25d0 100644 --- a/npm/cli-darwin-x64/package.json +++ b/npm/cli-darwin-x64/package.json @@ -1,6 +1,6 @@ { "name": "@shellfirm/cli-darwin-x64", - "version": "0.3.6", + "version": "0.3.7", "description": "shellfirm binary for macOS x64", "license": "MIT", "os": [ diff --git a/npm/cli-linux-x64/package.json b/npm/cli-linux-x64/package.json index a2ec077..4d8128e 100644 --- a/npm/cli-linux-x64/package.json +++ b/npm/cli-linux-x64/package.json @@ -1,6 +1,6 @@ { "name": "@shellfirm/cli-linux-x64", - "version": "0.3.6", + "version": "0.3.7", "description": "shellfirm binary for Linux x64", "license": "MIT", "os": [ diff --git a/npm/cli-win32-x64/package.json b/npm/cli-win32-x64/package.json index 5db2883..8248437 100644 --- a/npm/cli-win32-x64/package.json +++ b/npm/cli-win32-x64/package.json @@ -1,6 +1,6 @@ { "name": "@shellfirm/cli-win32-x64", - "version": "0.3.6", + "version": "0.3.7", "description": "shellfirm binary for Windows x64", "license": "MIT", "os": [ diff --git a/npm/shellfirm/package.json b/npm/shellfirm/package.json index 1c9c38b..b16b8e8 100644 --- a/npm/shellfirm/package.json +++ b/npm/shellfirm/package.json @@ -1,6 +1,6 @@ { "name": "@shellfirm/cli", - "version": "0.3.6", + "version": "0.3.7", "description": "Intercept risky shell commands with verification challenges — a captcha for your terminal", "license": "MIT", "repository": { @@ -11,9 +11,9 @@ "shellfirm": "bin/shellfirm" }, "optionalDependencies": { - "@shellfirm/cli-darwin-arm64": "0.3.6", - "@shellfirm/cli-darwin-x64": "0.3.6", - "@shellfirm/cli-linux-x64": "0.3.6", - "@shellfirm/cli-win32-x64": "0.3.6" + "@shellfirm/cli-darwin-arm64": "0.3.7", + "@shellfirm/cli-darwin-x64": "0.3.7", + "@shellfirm/cli-linux-x64": "0.3.7", + "@shellfirm/cli-win32-x64": "0.3.7" } } diff --git a/shellfirm/Cargo.toml b/shellfirm/Cargo.toml index 86ecd1f..3c2e9c0 100644 --- a/shellfirm/Cargo.toml +++ b/shellfirm/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "shellfirm" description = "`shellfirm` will intercept any risky patterns (default or defined by you) and prompt you a small challenge for double verification, kinda like a captcha for your terminal." -version = "0.3.6" +version = "0.3.7" edition = "2021" authors = ["Elad-Kaplan "] license = "MIT" @@ -68,7 +68,16 @@ cli = ["clap", "clap_complete", "clap_complete_nushell"] llm = ["reqwest"] mcp = ["tokio"] ai = ["mcp", "llm"] -wrap = ["nix/signal", "nix/process", "nix/poll", "nix/fs", "nix/ioctl", "rustix", "portable-pty", "windows-sys"] +wrap = [ + "nix/signal", + "nix/process", + "nix/poll", + "nix/fs", + "nix/ioctl", + "rustix", + "portable-pty", + "windows-sys", +] all = ["cli", "llm", "mcp", "ai", "wrap"] [[bin]]