diff --git a/CHANGELOG.md b/CHANGELOG.md index 3000593..a0cc9ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to webclaw are documented here. Format follows [Keep a Changelog](https://keepachangelog.com/). +## [0.5.7] — 2026-04-30 + +### Docs +- README header now uses an `
+ The fastest web scraper for AI agents.
67% fewer tokens. Sub-millisecond extraction. Zero browser overhead.
-
+
@@ -90,6 +92,21 @@ cargo install --git https://github.com/0xMassi/webclaw.git webclaw-cli
cargo install --git https://github.com/0xMassi/webclaw.git webclaw-mcp
```
+webclaw uses BoringSSL (via `boring-sys2`) for TLS fingerprinting, which
+needs a few system packages at build time. If `cargo install` panics with
+a `boring-sys2` build error or `Unable to find libclang`, install the
+prerequisites first:
+
+| OS | Install command |
+|---|---|
+| Debian / Ubuntu | `sudo apt install -y pkg-config libssl-dev cmake clang git build-essential` |
+| Fedora / RHEL | `sudo dnf install -y pkg-config openssl-devel cmake clang git make gcc` |
+| Arch | `sudo pacman -S pkg-config openssl cmake clang git base-devel` |
+| macOS | `xcode-select --install` (and Xcode CLT covers everything) |
+
+If you do not want to manage build dependencies yourself, prefer the
+**Homebrew**, **Docker**, or **Prebuilt binaries** options above.
+
### Docker
```bash