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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ built behind a feature branch and reviewed before merge.

## Unreleased

## 1.6.1 (2026-07-07)

Docs and visual-identity release; no engine code changes since 1.6.0.

- Visual-identity refresh: new spectrum banner (`.github/assets/banner.svg`) and a
feature-first README header, with the delivery contract in `tests/test_docs.py`
updated to pin the new assets.
- Docs overhaul: the README body rewritten feature-first, and a new
`docs/INTRODUCTION.md` walkthrough covering the current toolkit end to end.
- Live PyPI downloads badge added to the README.

## 1.6.0

The web-data engine release (2026-07-04): a capability-superset web toolkit carrying gather's
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ The `web` adapter reads static HTML and does not run JavaScript; a client-render
- [ARCHITECTURE.md](ARCHITECTURE.md): the design map, seams, and threat model.
- [docs/WEB-ENGINE-UPLIFT.md](docs/WEB-ENGINE-UPLIFT.md): the web-data engine roadmap and benchmarks.
- [docs/ENTERPRISE-READINESS.md](docs/ENTERPRISE-READINESS.md): context envelopes, action receipts, and host-neutral operation for unattended agents.
- [CHANGELOG.md](CHANGELOG.md): version history. Current release: 1.6.0.
- [CHANGELOG.md](CHANGELOG.md): version history. Current release: 1.6.1.

Peer projects: [crucible](https://github.com/HarperZ9/crucible) (judgment), [index](https://github.com/HarperZ9/index) (code maps), [forum](https://github.com/HarperZ9/forum) (orchestration), [telos](https://github.com/HarperZ9/telos) (the engine).

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 = "gather-engine"
version = "1.6.0"
version = "1.6.1"
description = "Accountable research intake for difficult sources, with provenance receipts and witnessed digests."
readme = "README.md"
requires-python = ">=3.11"
Expand Down
2 changes: 1 addition & 1 deletion src/gather/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from gather.source import Catalog, Source
from gather.store import Corpus

__version__ = "1.6.0"
__version__ = "1.6.1"

__all__ = [
"Catalog", "Corpus", "Digest", "Item", "NullProvenanceProvider", "NullSynthesizer",
Expand Down