Skip to content

RockLake v0.45.0

Choose a tag to compare

@github-actions github-actions released this 30 May 14:30
d898826

RockLake v0.45.0

Installation

Download the binary for your platform, verify the checksum, and make it executable:

Linux x86-64

curl -LO https://github.com/trickle-labs/rocklake/releases/download/v0.45.0/rocklake-linux-x86_64
sha256sum -c rocklake-linux-x86_64.sha256
chmod +x rocklake-linux-x86_64
mv rocklake-linux-x86_64 /usr/local/bin/rocklake

macOS arm64 (Apple Silicon)

curl -LO https://github.com/trickle-labs/rocklake/releases/download/v0.45.0/rocklake-macos-arm64
shasum -a 256 -c rocklake-macos-arm64.sha256
chmod +x rocklake-macos-arm64
mv rocklake-macos-arm64 /usr/local/bin/rocklake

Windows x86-64 (PowerShell)

Invoke-WebRequest -Uri "https://github.com/trickle-labs/rocklake/releases/download/v0.45.0/rocklake-windows-x86_64.exe" -OutFile rocklake.exe
# Verify checksum
$expected = (Get-Content rocklake-windows-x86_64.exe.sha256).Split()[0]
$actual   = (Get-FileHash rocklake.exe -Algorithm SHA256).Hash.ToLower()
if ($expected -ne $actual) { Write-Error "Checksum mismatch" } else { Write-Output "Checksum OK" }
# Move to a directory on your PATH
Move-Item rocklake.exe "$env:USERPROFILE\.local\bin\rocklake.exe"

See CHANGELOG.md for full release notes.

What's Changed

  • feat: v0.45.0 - GA Readiness Gate by @grove in #72

Full Changelog: v0.44.0...v0.45.0