v0.9.1 — Windows standalone fix
Highlights
Windows binary fix — the Windows release binaries now statically link the C runtime, so they work out of the box without requiring the Visual C++ Redistributable to be installed. lox is now a true zero-dependency, single-file binary on all platforms.
Fixed
- Windows: statically link CRT — the binary was dynamically linking
VCRUNTIME140.dllandapi-ms-win-crt-*DLLs, which meantlox.exewould fail to start on machines without the Visual C++ Redistributable. Added.cargo/config.tomlwith+crt-staticfor both x86_64 and aarch64 MSVC targets. (#91)
Docs
- Added Kubernetes CronJob example for automated config backups (#90)
Upgrade
# Windows
irm https://raw.githubusercontent.com/discostu105/lox/main/install.ps1 | iex# macOS / Linux
brew upgrade loxFull Changelog: v0.9.0...v0.9.1