chore(release): bump version to 0.6.14

Distribution release — the extraction engine is unchanged from 0.6.13. Ships
the broader-Linux-compatibility work: gnu binaries are now built on glibc 2.35
(so they run on Debian 12 / Ubuntu 22.04), plus new static musl binaries that
run on any Linux (Alpine, Amazon Linux 2023, RHEL 9). Also carries the
create-webclaw Windows/all-platform install fix and the WEBCLAW_API_KEY
setup-script fix.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Valerio 2026-06-27 15:44:57 +02:00
parent 472f059e4c
commit 25df9ef7b7
3 changed files with 23 additions and 8 deletions

View file

@ -5,6 +5,21 @@ Format follows [Keep a Changelog](https://keepachangelog.com/).
## [Unreleased]
## [0.6.14] - 2026-06-27
A distribution release: the extraction engine is unchanged from 0.6.13, but the
Linux binaries now run on far more systems.
### Added
- **Static musl Linux binaries** (`x86_64-unknown-linux-musl`, `aarch64-unknown-linux-musl`) that run on any Linux regardless of glibc — Alpine, Amazon Linux 2023, RHEL 9, and older distros. Built with cargo-zigbuild and shipped alongside the existing gnu binaries.
### Changed
- **gnu Linux binaries now run on older glibc.** They are built on Ubuntu 22.04 (glibc 2.35) instead of the latest runner (glibc 2.39), so they start on Debian 12, Ubuntu 22.04, and other LTS distros that previously failed with `version 'GLIBC_2.38' not found`.
### Fixed
- **`create-webclaw` install (`create-webclaw@0.1.5`)** failed on every platform: it looked up the wrong release-asset name and used `unzip` (absent on Windows), silently falling back to `cargo install`. It now downloads the correct versioned asset, extracts via PowerShell on Windows, lifts the binary out of the archive's versioned subdirectory, and surfaces GitHub API rate-limit errors instead of hiding them.
- **Self-hosting setup scripts** wrote `WEBCLAW_AUTH_KEY` into the generated `.env`, but the server reads `WEBCLAW_API_KEY` — on a public bind this made the server refuse to start. `setup.sh` and `deploy/hetzner.sh` now write the correct variable.
## [0.6.13] - 2026-06-17
### Performance

14
Cargo.lock generated
View file

@ -3221,7 +3221,7 @@ dependencies = [
[[package]]
name = "webclaw-cli"
version = "0.6.13"
version = "0.6.14"
dependencies = [
"clap",
"dotenvy",
@ -3242,7 +3242,7 @@ dependencies = [
[[package]]
name = "webclaw-core"
version = "0.6.13"
version = "0.6.14"
dependencies = [
"ego-tree",
"once_cell",
@ -3260,7 +3260,7 @@ dependencies = [
[[package]]
name = "webclaw-fetch"
version = "0.6.13"
version = "0.6.14"
dependencies = [
"async-trait",
"bytes",
@ -3288,7 +3288,7 @@ dependencies = [
[[package]]
name = "webclaw-llm"
version = "0.6.13"
version = "0.6.14"
dependencies = [
"async-trait",
"reqwest",
@ -3301,7 +3301,7 @@ dependencies = [
[[package]]
name = "webclaw-mcp"
version = "0.6.13"
version = "0.6.14"
dependencies = [
"dirs",
"dotenvy",
@ -3321,7 +3321,7 @@ dependencies = [
[[package]]
name = "webclaw-pdf"
version = "0.6.13"
version = "0.6.14"
dependencies = [
"pdf-extract",
"thiserror",
@ -3330,7 +3330,7 @@ dependencies = [
[[package]]
name = "webclaw-server"
version = "0.6.13"
version = "0.6.14"
dependencies = [
"anyhow",
"axum",

View file

@ -3,7 +3,7 @@ resolver = "2"
members = ["crates/*"]
[workspace.package]
version = "0.6.13"
version = "0.6.14"
edition = "2024"
license = "AGPL-3.0"
repository = "https://github.com/0xMassi/webclaw"