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
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ failure. For the trust model and the evaluation harness behind those calls, see

## [Unreleased]

## [0.1.5] — 2026-07-24

### Added
- **Stub-extraction guard** — the roster/directory class. A page carrying real content
(≥ 1,000 chars of visible text) whose extraction is a stub (< 500 chars) retaining under
Expand Down Expand Up @@ -99,7 +101,8 @@ Initial working toolset (milestones M1–M5).
- **`search`** subcommand added to the CLI (had been MCP-only).

<!-- No git tags are cut yet; links point at the commit that shipped each version. -->
[Unreleased]: https://github.com/Wynelson94/tearsheet/compare/feacd27...main
[Unreleased]: https://github.com/Wynelson94/tearsheet/compare/32858dd...main
[0.1.5]: https://github.com/Wynelson94/tearsheet/commit/32858dd
[0.1.4]: https://github.com/Wynelson94/tearsheet/commit/feacd27
[0.1.3]: https://github.com/Wynelson94/tearsheet/commit/282f71e
[0.1.2]: https://github.com/Wynelson94/tearsheet/commit/45f0e84
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "tearsheet"
version = "0.1.4"
version = "0.1.5"
description = "Local web-to-markdown for LLM research: scrape, crawl, map, search, extract — token-efficient, MCP-first."
readme = "README.md"
requires-python = ">=3.12"
Expand Down
2 changes: 1 addition & 1 deletion src/tearsheet/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
from tearsheet.mapper import map_site
from tearsheet.structured import extract_page, extract_structured

__version__ = "0.1.4"
__version__ = "0.1.5"

__all__ = ["__version__", "extract_page", "extract_structured", "map_site"]
Loading