Skip to content

Ockam v0.98.0

Compare
Choose a tag to compare
@github-actions github-actions released this 19 Oct 14:32
· 0 commits to 59b64978ab2d9f9ac7501cf4b166f659eb0fccd6 since this release
ockam_v0.98.0
a5070a3

Ockam.app

We're building a desktop system tray App for Ockam.
If you're feeling adventurous, in this release you can try a super early version on macOS by running:

brew install --cask build-trust/ockam/ockam-app --no-quarantine

Let us know what you think.

Ockam Command

Install

You can also install on Linux and MacOS systems using curl.

curl --proto '=https' --tlsv1.2 -sSfL https://install.command.ockam.io | bash

This will download a precompiled binary and add it to your path.

Homebrew

To install this release using Homebrew:

brew install build-trust/ockam/ockam

Docker

To use the Docker OCI package:

docker pull ghcr.io/build-trust/ockam:0.98.0

Precompiled Binaries

# download sha256sums.txt
curl --proto '=https' --tlsv1.2 -sSfL -O \
  https://github.com/build-trust/ockam/releases/download/ockam_v0.98.0/sha256sums.txt

# download sha256sums.txt.sig
curl --proto '=https' --tlsv1.2 -sSfL -O \
  https://github.com/build-trust/ockam/releases/download/ockam_v0.98.0/sha256sums.txt.sig

# download our release public key
curl --proto '=https' --tlsv1.2 -sSfL -o ockam.pub \
  https://raw.githubusercontent.com/build-trust/ockam/develop/tools/docker/cosign.pub

# verify signatures
cosign verify-blob --key ockam.pub --signature sha256sums.txt.sig sha256sums.txt

# download ockam command binary for your architecture
curl --proto '=https' --tlsv1.2 -sSfL -O \
  https://github.com/build-trust/ockam/releases/download/ockam_v0.98.0/ockam.x86_64-unknown-linux-gnu

# verify that the sha256 hash of the downloaded binary is the same as
# the corresponding hash mentioned in sha256sums.txt
cat sha256sums.txt | grep ockam.x86_64-unknown-linux-gnu | sha256sum -c

# rename the download binary and give it permission to execute
mv ockam.x86_64-unknown-linux-gnu ockam
chmod u+x ockam

Rust Crates

To use Ockam as a Rust library, run the following command within your project directory:

The following crates were published as part of this release:

Contributors

The following people contributed to this release, thank you all 🥳

@adrianbenavides @CEMcNEill @davide-baldo @etorreborre @glenngillen @Ippolito72 @mattgreg @metaclips @mrinalwadhwa @nazmulidris @polvorin @SanjoDeundiak @snandam @0scvr @A-5ingh @AnshKumar200 @AshwinKul28 @Asymtode712 @Celeo @Chandram-Dutta @DIlkhush00 @Dhanush0369 @Lucif3r-in @Lumexralph @MaheshMoholkar @Rage-cmd @Ritish134 @Salonikansal2 @Suraj-kumar00 @Tashuuuu @Technmad @Virtual4087 @Zapix @abhiraj-mengade @adeyinkaezra123 @adiSuper94 @amoghak-ds @axd99 @dhruvmehtaaa @engineerakki @ironspec07 @jltorresm @kriogenia @makeittotop @melissa-kun-li @mickm3n @milinddethe15 @mklawa @nabeel001 @nayaldivya @paulozulato @racnan @rghdrizzle @rojin254 @sayyedarib @utkarsh1042005 @volcov

New Contributors

The following people made their very first contribution 🥳

@A-5ingh @AshwinKul28 @Asymtode712 @Celeo @DIlkhush00 @Dhanush0369 @Lucif3r-in @Lumexralph @MaheshMoholkar @Rage-cmd @Ritish134 @Suraj-kumar00 @Tashuuuu @Technmad @Virtual4087 @Zapix @abhiraj-mengade @adeyinkaezra123 @amoghak-ds @axd99 @dhruvmehtaaa @engineerakki @ironspec07 @makeittotop @melissa-kun-li @nabeel001 @racnan @rojin254 @sayyedarib @utkarsh1042005 @volcov

Full Changelog

ockam_v0.97.0...ockam_v0.98.0