Skip to content

Commit

Permalink
ci: update to release ockam_v0.103.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ockam-team authored and mrinalwadhwa committed Nov 8, 2023
1 parent e18d490 commit 683ef33
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.102.0"
version "ockam_v0.103.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.102.0/ockam.app.aarch64-apple-darwin.dmg"
sha256 "9274411e4757df65724657ddad73d37734a9096797540b18ecb1350ea1f7bfdf"
url "https://github.com/build-trust/ockam/releases/download/ockam_v0.103.0/ockam.app.aarch64-apple-darwin.dmg"
sha256 "a3337b8140f10d16844f3ddec3fbd1c0ca956ff6ffb5905bf0637e7c60cd10d8"
end

if Hardware::CPU.intel?
url "https://github.com/build-trust/ockam/releases/download/ockam_v0.102.0/ockam.app.x86_64-apple-darwin.dmg"
sha256 "de704e3e86f18c1ae4e64f4f4cd1be2e872837011e3844ed9d2d6418a7fc24c9"
url "https://github.com/build-trust/ockam/releases/download/ockam_v0.103.0/ockam.app.x86_64-apple-darwin.dmg"
sha256 "69c9eadfec39a09320d4c2a838f9624fb1989d07cce7d2cccc8594f09ef3ace7"
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.102.0/ockam.aarch64-apple-darwin"
sha256 "068b6f8fe3080bbebe9dbf94fa3c98bdede3fba76986de1a218a4b7ac3241b96"
url "https://github.com/build-trust/ockam/releases/download/ockam_v0.103.0/ockam.aarch64-apple-darwin"
sha256 "f2f1e584090a9ff9d7a9f677e2e903255c94caf14cc2b80866bdc53d415b7c9f"

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.102.0/ockam.x86_64-apple-darwin"
sha256 "6ac94f27d7f75ca595801ffb022c3f9c8955af2bb17a108d543d79f2a6230ad6"
url "https://github.com/build-trust/ockam/releases/download/ockam_v0.103.0/ockam.x86_64-apple-darwin"
sha256 "7f2a85221dac24bebcfc7ebcce6e076863596c5f932c01848f74a1a48872653e"

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.102.0/ockam.aarch64-unknown-linux-musl"
sha256 "e0aa3dff426bf212a1dad4e8c7db020ae21b675ec53d39c6bed9c6f30da9aacb"
url "https://github.com/build-trust/ockam/releases/download/ockam_v0.103.0/ockam.aarch64-unknown-linux-musl"
sha256 "64ec3fa70f027b664dce4e12a15a681c196fe650f7556829a03924b48f69da94"

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.102.0/ockam.x86_64-unknown-linux-musl"
sha256 "6e778a5bc8b4ef7f14ee05f6df91f035a9d8ffd91e6dd823bf09a8b305f7596f"
url "https://github.com/build-trust/ockam/releases/download/ockam_v0.103.0/ockam.x86_64-unknown-linux-musl"
sha256 "7fa0be065a34d7aeb3b78fc7c8e3ae8657cbd838b7f26cb2b296e605f95bb8dc"

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

0 comments on commit 683ef33

Please sign in to comment.