Skip to content

Commit

Permalink
ci: update to release ockam_v0.99.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ockam-team authored and mrinalwadhwa committed Oct 25, 2023
1 parent b0674d2 commit 9bed8dc
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
10 changes: 5 additions & 5 deletions Casks/ockam-app.rb
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
cask "ockam-app" do
version "ockam_v0.98.0"
version "ockam_v0.99.0"
name "Ockam"
desc "End-to-end encryption and mutual authentication for distributed applications"
homepage "https://github.com/build-trust/ockam"

if Hardware::CPU.arm?
url "https://github.com/build-trust/ockam/releases/download/ockam_v0.98.0/ockam.app.aarch64-apple-darwin-swiftui.dmg"
sha256 "894afd90fb933ba595cc3387cd404e99238b9de56d143e2f76e5de17c0583428"
url "https://github.com/build-trust/ockam/releases/download/ockam_v0.99.0/ockam.app.aarch64-apple-darwin.dmg"
sha256 "e9e3e8b46e31d222e6595e0cba356ee71e5e348e3abcfd59fb352ff223450aec"
end

if Hardware::CPU.intel?
url "https://github.com/build-trust/ockam/releases/download/ockam_v0.98.0/ockam.app.x86_64-apple-darwin.dmg"
sha256 "2772a7097109b6e7cadf6f6921a5445e3fa2495cfe1841cb240d3a2cb17c2243"
url "https://github.com/build-trust/ockam/releases/download/ockam_v0.99.0/ockam.app.x86_64-apple-darwin.dmg"
sha256 "4f87d0bca47657f6f64fb71a51bcadbc80ccdb05ea1c7b95ae8c685cf2377014"
end

depends_on formula: "ockam"
Expand Down
16 changes: 8 additions & 8 deletions ockam.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ class Ockam < Formula

on_macos do
if Hardware::CPU.arm?
url "https://github.com/build-trust/ockam/releases/download/ockam_v0.98.0/ockam.aarch64-apple-darwin"
sha256 "68b4b760332d8aa44faea3023989aac820bcdce30572bbfbc5dbd60825de918a"
url "https://github.com/build-trust/ockam/releases/download/ockam_v0.99.0/ockam.aarch64-apple-darwin"
sha256 "c1a8006aa3fc74dea086cecd2b9d1a08332d531a2ae53e79a8c2e60fa8a55524"

def install
bin.install "ockam.aarch64-apple-darwin" => "ockam"
Expand All @@ -19,8 +19,8 @@ def install
end

if Hardware::CPU.intel?
url "https://github.com/build-trust/ockam/releases/download/ockam_v0.98.0/ockam.x86_64-apple-darwin"
sha256 "c3e4b6f6ce2a2dc8fbb1346cf3fc354b0004db472075a3c29b65479b4b7564d7"
url "https://github.com/build-trust/ockam/releases/download/ockam_v0.99.0/ockam.x86_64-apple-darwin"
sha256 "5400eaf14b72998b06e1e43e361a893a0fba17d22b84505da1a6874160c6a590"

def install
bin.install "ockam.x86_64-apple-darwin" => "ockam"
Expand All @@ -32,8 +32,8 @@ def install

on_linux do
if Hardware::CPU.arm?
url "https://github.com/build-trust/ockam/releases/download/ockam_v0.98.0/ockam.aarch64-unknown-linux-musl"
sha256 "53e61da792f7aa4dc59901102d7c963904cd345d9ee80ae59156276831323776"
url "https://github.com/build-trust/ockam/releases/download/ockam_v0.99.0/ockam.aarch64-unknown-linux-musl"
sha256 "5f025a5cf52095615bbcb46cfdd9f945e43d344acd9354d69519b9503ea8a734"

def install
bin.install "ockam.aarch64-unknown-linux-musl" => "ockam"
Expand All @@ -43,8 +43,8 @@ def install
end

if Hardware::CPU.intel?
url "https://github.com/build-trust/ockam/releases/download/ockam_v0.98.0/ockam.x86_64-unknown-linux-musl"
sha256 "158ad622dcd9ba9512159e195d2833c2839705cda979df445f6120728a7f73a2"
url "https://github.com/build-trust/ockam/releases/download/ockam_v0.99.0/ockam.x86_64-unknown-linux-musl"
sha256 "dd97b77d158da35a559b507662e1506d6269c7e0624db99eff153d8329fc066d"

def install
bin.install "ockam.x86_64-unknown-linux-musl" => "ockam"
Expand Down

0 comments on commit 9bed8dc

Please sign in to comment.