From 66a734276d473801c2a680d0cb53d9993a0ee631 Mon Sep 17 00:00:00 2001 From: Teodor Calin Date: Mon, 13 Jul 2026 10:52:11 +0300 Subject: [PATCH] aegis: bump to v0.1.4, add macOS Intel binary MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit v0.1.4 is the first release with the aegis-macos-x86_64 asset (the release pipeline was stuck on the retired macos-13 runner), so the formula finally gets an on_macos/on_intel block — brew install now works on Intel Macs. All four sha256s computed from the freshly downloaded release assets. Co-Authored-By: Claude Fable 5 --- Formula/aegis.rb | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/Formula/aegis.rb b/Formula/aegis.rb index c9f81cc..1d555c6 100644 --- a/Formula/aegis.rb +++ b/Formula/aegis.rb @@ -1,24 +1,28 @@ class Aegis < Formula desc "Local agent-guard: stops prompt injection, jailbreaks & infra-impersonation against AI agents" homepage "https://github.com/pilot-protocol/aegis" - version "0.1.3" + version "0.1.4" license "MIT" # Prebuilt binaries — no compiler needed, installs in seconds. on_macos do on_arm do - url "https://github.com/pilot-protocol/aegis/releases/download/v0.1.3/aegis-macos-arm64" - sha256 "2fe912bca87278fe54394d93bbda47e41d95b7c821010fc540bf585d0e7f5061" + url "https://github.com/pilot-protocol/aegis/releases/download/v0.1.4/aegis-macos-arm64" + sha256 "ef3e215f5459e7ca7bc98fb914c93ae171129c7fd6d267e3e9694c1c033277be" + end + on_intel do + url "https://github.com/pilot-protocol/aegis/releases/download/v0.1.4/aegis-macos-x86_64" + sha256 "15af99633ac3453f567d22bc29762ee5ec28b49f981f5216adfa933492ab1054" end end on_linux do on_arm do - url "https://github.com/pilot-protocol/aegis/releases/download/v0.1.3/aegis-linux-arm64" - sha256 "09b4c0deac2de3a5bf73ab4e59e238293f6d4bfcb49ba94d810819f6e5311107" + url "https://github.com/pilot-protocol/aegis/releases/download/v0.1.4/aegis-linux-arm64" + sha256 "2b6c8e6d47ff319d9d5c36c50007a10a9cbecbfe54dd007913184510e5d2c15f" end on_intel do - url "https://github.com/pilot-protocol/aegis/releases/download/v0.1.3/aegis-linux-x86_64" - sha256 "411cbf7860fa38f4540f44b1f401833d5d14c2837e980e0f8360b49353297ba2" + url "https://github.com/pilot-protocol/aegis/releases/download/v0.1.4/aegis-linux-x86_64" + sha256 "ca6c0eba667b1689c0d3c7936131066ca8acee935bc03288d35797972b020f6d" end end