sweep the last v0.10 remnants out of comments and the paper README tail

This commit is contained in:
mrwulf 2026-08-16 13:19:13 +02:00
parent 0e700841c6
commit 4f9e750eeb
2 changed files with 4 additions and 4 deletions

View file

@ -16,5 +16,5 @@ on 2026-08-15; like every prior state of this folder, they remain
retrievable from this repository's git history.
Revisions v0.3v0.9 were successive overwrites of `ltl.tex`; they live in
this repository's git history. v0.9 is the submitted version — the
current `ltl.pdf` above.
this repository's git history. v0.9 is the version that was submitted
for review; v0.10 and v0.11 supersede it.

View file

@ -46,7 +46,7 @@ def make_handler(log: TransparencyLog, base_path: str, docs_html: str, paper_pdf
if route in ("/", "/docs"):
self._send_html(docs_html)
elif route in ("/paper", "/paper/ltl.pdf"):
# /paper serves the current paper only (v0.10, revised
# /paper serves the current paper only (v0.11, revised
# August 2026). Superseded drafts were retired from the
# site 2026-08-15; git history retains them.
body = paper_pdfs.get("current")
@ -229,7 +229,7 @@ def serve(
docs_html = render_docs(log, base_path)
paper_dir = Path(__file__).resolve().parents[3] / "paper"
variants = {
"current": paper_dir / "ltl.pdf", # v0.10, revised August 2026
"current": paper_dir / "ltl.pdf", # v0.11, revised August 2026
}
paper_pdfs = {name: p.read_bytes() for name, p in variants.items() if p.is_file()}
handler = make_handler(log, base_path, docs_html, paper_pdfs)