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
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
## [Unreleased]
## [0.3.10] - 2026-08-11

### Added

- **CLI**: close out cache pre-warming — offline integration tests, `[routing.prewarm]` config block, documentation (#570)
- **CI**: nightly integration test for JS-heavy LLM-ready markdown (#571)
- **Cascade**: FetchTier enum and stealth escalation layer for provider tier mapping (#509, #488)
- **Resolver**: ReadonlyResolverProtocol for typed provider callables (#508)
- **Resolver**: visual_clip provider wired into URL resolution cascade
Expand All @@ -18,6 +20,8 @@

### Changed

- **CLI**: refactor dead-code removal, split utils into package, expand config output (#575)
- **CLI**: drop unnecessary Sync bound on prewarm resolve closure (#573)
- **Resolver**: align synthesis logic with 2026 LLM-ready standards (#511)
- **CLI**: optimize semantic cache metrics and redundancy pruning
- **CLI**: optimize deterministic merge reducing line allocations
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "do-wdr"
version = "0.3.9"
version = "0.3.10"
edition = "2024"
rust-version = "1.85"
description = "Web Documentation Resolver CLI"
Expand Down
2 changes: 1 addition & 1 deletion cli/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use clap::{Parser, Subcommand};
#[derive(Parser, Debug)]
#[command(name = "do-wdr")]
#[command(about = "Web Documentation Resolver - Resolve URLs and queries into documentation", long_about = None)]
#[command(version = "0.3.9")]
#[command(version = "0.3.10")]
pub struct Cli {
#[command(subcommand)]
pub command: Commands,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "do-web-doc-resolver"
version = "0.3.9"
version = "0.3.10"
description = "Resolve queries or URLs into compact, LLM-ready markdown using a low-cost cascade"
readme = "README.md"
license = {text = "MIT"}
Expand Down
2 changes: 1 addition & 1 deletion web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "do-web-doc-resolver-ui",
"version": "0.3.9",
"version": "0.3.10",
"private": true,
"type": "module",
"scripts": {
Expand Down
Loading