Skip to content

Ockam v0.86.0

Compare
Choose a tag to compare
@github-actions github-actions released this 04 May 22:19
· 0 commits to 8e357327114b4c31d2d2742940c85c2155428cc8 since this release
ockam_v0.86.0
80319da

A new step-by-step walkthrough of Ockam Command
https://docs.ockam.io/reference/command

End to End Secure Channels

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.86.0

Precompiled Binaries

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

# download sha256sums.txt.sig
curl --proto '=https' --tlsv1.2 -sSfL -O \
  https://github.com/build-trust/ockam/releases/download/ockam_v0.86.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.86.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:

cargo add ockam@0.86.0

The following crates were published as part of this release:

Contributors

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

@adrianbenavides @BeenzSyed @caoakleyii @davide-baldo @etorreborre @glenngillen @hairyhum @mattgreg @metaclips @mrinalwadhwa @mszpakowski @polvorin @SanjoDeundiak @shanesveller @talir0drigues
@neil2468 @tarunsamanta2k20 @zacck @jamesneb @saputkin @utkarshgupta137 @jjdoar

New Contributors

The following people made their very first contribution 🥳

@tarunsamanta2k20 @zacck @jamesneb @saputkin @utkarshgupta137 @jjdoar

Full Changelog

ockam_v0.85.0...ockam_v0.86.0