Skip to content

ZamSync v1.2.0

Choose a tag to compare

@github-actions github-actions released this 15 Jun 19:25
· 49 commits to main since this release

ZamSync v1.2.0

Offline-first synchronization engine for intermittent-connectivity deployments.

Install

# Linux x86_64
curl -fsSL -o zamsync https://github.com/Etoile-Bleu/ZamSync/releases/download/v1.2.0/zamsync-linux-x86_64
chmod +x zamsync && sudo mv zamsync /usr/local/bin/

# Linux ARM64 (Raspberry Pi 4, AWS Graviton)
curl -fsSL -o zamsync https://github.com/Etoile-Bleu/ZamSync/releases/download/v1.2.0/zamsync-linux-aarch64
chmod +x zamsync && sudo mv zamsync /usr/local/bin/

# Linux ARMv7 (Raspberry Pi 2 / 3)
curl -fsSL -o zamsync https://github.com/Etoile-Bleu/ZamSync/releases/download/v1.2.0/zamsync-linux-armv7
chmod +x zamsync && sudo mv zamsync /usr/local/bin/

# Windows (PowerShell)
Invoke-WebRequest -Uri "https://github.com/Etoile-Bleu/ZamSync/releases/download/v1.2.0/zamsync-windows-x86_64.exe" -OutFile zamsync.exe

Docker

docker pull ghcr.io/$(echo 'Etoile-Bleu/ZamSync' | tr '[:upper:]' '[:lower:]'):v1.2.0
# or latest
docker pull ghcr.io/$(echo 'Etoile-Bleu/ZamSync' | tr '[:upper:]' '[:lower:]'):latest

Verify checksums

sha256sum -c SHA256SUMS.txt

What's Changed

  • feat(cmd): add zamsync project -- SQLite projection service (Phase 11) by @Etoile-Bleu in #42
  • chore: add GitHub issue templates by @Etoile-Bleu in #43
  • docs: CONTRIBUTING.md, SQLite projection section, GitHub topics by @Etoile-Bleu in #56
  • fix(ci): apply cargo fmt across workspace by @Etoile-Bleu in #57
  • docs: roadmap Phases 15-20 + repo cleanup by @Etoile-Bleu in #58
  • fix(release): bypass branch protection in release workflow by @Etoile-Bleu in #60

Full Changelog: v1.1.1...v1.2.0