chore(release): bump version to 0.6.15

This commit is contained in:
Valerio 2026-07-18 19:00:46 +02:00
parent 4673fc9b9a
commit 44ae670596
3 changed files with 16 additions and 8 deletions

View file

@ -5,6 +5,14 @@ Format follows [Keep a Changelog](https://keepachangelog.com/).
## [Unreleased]
## [0.6.15] - 2026-07-18
### Added
- **`lead` and `lead_batch` MCP tools.** Turn a company URL into an outreach-ready lead — founders and leadership with their LinkedIn and X, plus company summary, socials, tech stack, pricing, and public emails — straight from any MCP client (Claude Desktop, Cursor, Claude Code, …). `lead` enriches one company; `lead_batch` enriches up to 25 at once and blocks until the batch finishes. Both require `WEBCLAW_API_KEY`.
### Fixed
- **`webclaw --help` no longer prints secret environment values.** Secret env vars are masked in help output instead of being shown in the clear.
## [0.6.14] - 2026-06-27
A distribution release: the extraction engine is unchanged from 0.6.13, but the

14
Cargo.lock generated
View file

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

View file

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