Skip to content

Commit deef716

Browse files
committed
feat: add official Homebrew formula for v1.1.6
- Formula class name: Agb (official standard) - Multi-platform support (macOS Intel/ARM, Linux Intel/ARM) - Comprehensive test suite - Ready for Homebrew core repository submission
1 parent 6e8eb2c commit deef716

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

homebrew/agb.rb

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
class Agb < Formula
22
desc "Secure infrastructure for running AI-generated code"
33
homepage "https://github.com/agbcloud/agbcloud-cli"
4-
version "0.1.0"
4+
version "1.1.6"
55
license "MIT"
66

77
on_macos do
88
if Hardware::CPU.intel?
9-
url "https://github.com/agbcloud/agbcloud-cli/releases/download/v0.1.0/agb-0.1.0-darwin-amd64.tar.gz"
10-
sha256 "2e8db5702b497cbbed07aeae9407417d12454a641d94a7f5a0348c5b15b3c645"
9+
url "https://github.com/agbcloud/agbcloud-cli/releases/download/v1.1.6/agb-1.1.6-darwin-amd64.tar.gz"
10+
sha256 "ba1e634acee3eebf1c77324cfcd09419380ee06d9f6201037745b53066bd98f9"
1111
elsif Hardware::CPU.arm? || Hardware::CPU.arch == :arm64
12-
url "https://github.com/agbcloud/agbcloud-cli/releases/download/v0.1.0/agb-0.1.0-darwin-arm64.tar.gz"
13-
sha256 "692ade7607446a678fcfb840365e5fe24ad756313c0d977db7d19cf727fde382"
12+
url "https://github.com/agbcloud/agbcloud-cli/releases/download/v1.1.6/agb-1.1.6-darwin-arm64.tar.gz"
13+
sha256 "4d8cc682fa171d705f91f0552cd2d8016b4433fed2abdc3aea2b35c724d87c81"
1414
end
1515
end
1616

1717
on_linux do
1818
if Hardware::CPU.intel?
19-
url "https://github.com/agbcloud/agbcloud-cli/releases/download/v0.1.0/agb-0.1.0-linux-amd64.tar.gz"
20-
sha256 "14adbac86b512188b826dfbcef6bb72c4d3c46a96fe2802af46eec93df5000fd"
19+
url "https://github.com/agbcloud/agbcloud-cli/releases/download/v1.1.6/agb-1.1.6-linux-amd64.tar.gz"
20+
sha256 "35320d046c9555c4d57fa443d9b4730235353ee05318cc37d8d2b48199b64e48"
2121
elsif Hardware::CPU.arm? || Hardware::CPU.arch == :arm64
22-
url "https://github.com/agbcloud/agbcloud-cli/releases/download/v0.1.0/agb-0.1.0-linux-arm64.tar.gz"
23-
sha256 "7055021bd456f0ee780d8e1f4bda6a3d921fa7419ef76c1d83803cbdccbe3711"
22+
url "https://github.com/agbcloud/agbcloud-cli/releases/download/v1.1.6/agb-1.1.6-linux-arm64.tar.gz"
23+
sha256 "6862efa459c95b11ff87680d0a5e47ca1a7fd1e302d6e84c2e3c772988802d39"
2424
end
2525
end
2626

0 commit comments

Comments
 (0)