Skip to content

v0.0.2-rc.2

Pre-release
Pre-release

Choose a tag to compare

@github-actions github-actions released this 12 Aug 21:39
Immutable release. Only release title and notes can be modified.

Install

brew install centauri-ai/tap/coslash
coslash

Already tapped? brew upgrade coslash.

The .tar.gz assets below are for manual installs:

VERSION=v0.0.2-rc.2
ARCH=arm64  # or amd64 on Intel
ASSET="coslash_${VERSION}_darwin_${ARCH}.tar.gz"
BASE_URL="https://github.com/centauri-ai/coslash/releases/download/${VERSION}"
curl -fLO "${BASE_URL}/${ASSET}"
curl -fLO "${BASE_URL}/checksums.txt"
grep -F "  ${ASSET}" checksums.txt | shasum -a 256 -c -
tar -xzf "${ASSET}"
"${ASSET%.tar.gz}/coslash"

Substitute the release version and architecture. The binaries are unsigned
and unnotarized, so macOS may warn about an archive downloaded through a
browser; the Homebrew install above is not affected.

What's Changed

Bug fixes

  • Fix brand color tokens keeping light values in dark mode @calvintvu (#65)

Refactoring

  • Make session source diagnostics storage-neutral @calvintvu (#51)
  • Support non-file session sources in the collector @calvintvu (#50)

Tooling and CI

Full Changelog: v0.0.2-rc.1...v0.0.2-rc.2