Skip to content

RockLake v0.47.3

Latest

Choose a tag to compare

@github-actions github-actions released this 01 Jun 17:47

RockLake v0.47.3

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.47.3/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.47.3/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.47.3/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.47.3): DuckLake 1.0 Spec Gap Closure — Complete Implementation by @grove in #75

Full Changelog: v0.47.2...v0.47.3