Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.0.13"
".": "0.0.14"
}
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@

All notable changes to CRW are documented here.

## [0.0.14](https://github.com/us/crw/compare/v0.0.13...v0.0.14) (2026-03-25)


### Features

* **mcp:** auto-download LightPanda binary for zero-config JS rendering ([41f443b](https://github.com/us/crw/commit/41f443b885326401b653cfcba0054cb943672ca6))
* **mcp:** auto-spawn headless Chrome for JS rendering in embedded mode ([9a6b0ae](https://github.com/us/crw/commit/9a6b0ae3f16399f8f9f233109e431f74a882d973))


### Bug Fixes

* **ci:** move crw-mcp to Tier 4 in release workflow and add workflow_dispatch ([d7584a8](https://github.com/us/crw/commit/d7584a82c0dd4ac0c6cd8b169b19939d92eb4e95))

## [0.0.13](https://github.com/us/crw/compare/v0.0.12...v0.0.13) (2026-03-24)


Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.0.13"
version = "0.0.14"
edition = "2024"
license = "AGPL-3.0"
repository = "https://github.com/us/crw"
Expand Down
8 changes: 4 additions & 4 deletions crates/crw-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ name = "crw"
path = "src/main.rs"

[dependencies]
crw-core = { path = "../crw-core", version = "0.0.13" }
crw-renderer = { path = "../crw-renderer", version = "0.0.13" }
crw-extract = { path = "../crw-extract", version = "0.0.13" }
crw-crawl = { path = "../crw-crawl", version = "0.0.13" }
crw-core = { path = "../crw-core", version = "0.0.14" }
crw-renderer = { path = "../crw-renderer", version = "0.0.14" }
crw-extract = { path = "../crw-extract", version = "0.0.14" }
crw-crawl = { path = "../crw-crawl", version = "0.0.14" }

tokio = { workspace = true }
clap = { workspace = true }
Expand Down
6 changes: 3 additions & 3 deletions crates/crw-crawl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ categories.workspace = true
description = "Async BFS web crawler with rate limiting and robots.txt support for CRW"

[dependencies]
crw-core = { path = "../crw-core", version = "0.0.13" }
crw-renderer = { path = "../crw-renderer", version = "0.0.13" }
crw-extract = { path = "../crw-extract", version = "0.0.13" }
crw-core = { path = "../crw-core", version = "0.0.14" }
crw-renderer = { path = "../crw-renderer", version = "0.0.14" }
crw-extract = { path = "../crw-extract", version = "0.0.14" }
reqwest = { workspace = true }
scraper = { workspace = true }
tokio = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/crw-extract/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ categories.workspace = true
description = "HTML extraction and markdown conversion engine for the CRW web scraper"

[dependencies]
crw-core = { path = "../crw-core", version = "0.0.13" }
crw-core = { path = "../crw-core", version = "0.0.14" }
lol_html = { workspace = true }
scraper = { workspace = true }
htmd = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/crw-mcp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ default = ["embedded"]
embedded = ["dep:crw-server"]

[dependencies]
crw-core = { path = "../crw-core", version = "0.0.13" }
crw-core = { path = "../crw-core", version = "0.0.14" }
serde_json = { workspace = true }
tokio = { workspace = true }
reqwest = { workspace = true }
Expand All @@ -28,4 +28,4 @@ clap = { workspace = true }
dirs = "6"

# Embedded mode: pulls in full scraping engine
crw-server = { path = "../crw-server", version = "0.0.13", optional = true, features = ["cdp"] }
crw-server = { path = "../crw-server", version = "0.0.14", optional = true, features = ["cdp"] }
2 changes: 1 addition & 1 deletion crates/crw-renderer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ default = []
cdp = ["tokio-tungstenite"]

[dependencies]
crw-core = { path = "../crw-core", version = "0.0.13" }
crw-core = { path = "../crw-core", version = "0.0.14" }
reqwest = { workspace = true }
tokio = { workspace = true }
tokio-tungstenite = { version = "0.28", features = ["rustls-tls-native-roots"], optional = true }
Expand Down
8 changes: 4 additions & 4 deletions crates/crw-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ cdp = ["crw-renderer/cdp"]
test-utils = []

[dependencies]
crw-core = { path = "../crw-core", version = "0.0.13" }
crw-renderer = { path = "../crw-renderer", version = "0.0.13" }
crw-extract = { path = "../crw-extract", version = "0.0.13" }
crw-crawl = { path = "../crw-crawl", version = "0.0.13" }
crw-core = { path = "../crw-core", version = "0.0.14" }
crw-renderer = { path = "../crw-renderer", version = "0.0.14" }
crw-extract = { path = "../crw-extract", version = "0.0.14" }
crw-crawl = { path = "../crw-crawl", version = "0.0.14" }
axum = { workspace = true }
tower = { workspace = true }
tower-http = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.13
0.0.14