From be95a122657e59fc329a124d665e5ab356258c53 Mon Sep 17 00:00:00 2001 From: Hibou04-ops Date: Thu, 7 May 2026 16:21:31 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20release=200.9.1=20=E2=80=94=20PyPI=20b?= =?UTF-8?q?adge=20=E2=86=92=20dynamic=20shields=20endpoint?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Permanent fix for the 'badge one version behind' issue. README + README_KR PyPI badge now uses https://img.shields.io/pypi/v/antemortem.svg. Triggered by 0.9.0 publish where the page rendered with pypi-0.8.0 badge. Co-Authored-By: Claude Opus 4.7 (1M context) --- CHANGELOG.md | 6 ++++++ README.md | 2 +- README_KR.md | 2 +- pyproject.toml | 2 +- src/antemortem/__init__.py | 2 +- 5 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f854d8..aa0d88c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), ## [Unreleased] +## [0.9.1] - 2026-05-07 + +### Fixed + +- **PyPI badge now dynamic.** Switched README + README_KR PyPI version badge from a hardcoded `pypi-X.Y.Z-blue.svg` shield to the dynamic `pypi/v/antemortem.svg` endpoint. Previously every release required manual badge bump (the 0.9.0 page rendered with `pypi 0.8.0`). The dynamic endpoint queries PyPI directly, so future releases never drift. + ## [0.9.0] - 2026-05-07 Docs follow-up to 0.8.0. No code changes; version bumped to minor for visibility on the PyPI page (the 0.8.0 page rendered with a stale README and pre-Gemini badge). diff --git a/README.md b/README.md index 01b5720..88badea 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ [![CI](https://github.com/hibou04-ops/antemortem-cli/actions/workflows/ci.yml/badge.svg)](https://github.com/hibou04-ops/antemortem-cli/actions/workflows/ci.yml) [![License: Apache 2.0](https://img.shields.io/badge/license-Apache--2.0-blue.svg)](LICENSE) [![Python](https://img.shields.io/badge/python-3.11%2B-blue.svg)](https://www.python.org) -[![PyPI](https://img.shields.io/badge/pypi-0.8.0-blue.svg)](https://pypi.org/project/antemortem/) +[![PyPI](https://img.shields.io/pypi/v/antemortem.svg)](https://pypi.org/project/antemortem/) [![Tests](https://img.shields.io/badge/tests-183%20passing-brightgreen.svg)](tests/) [![Providers](https://img.shields.io/badge/providers-anthropic%20%7C%20openai%20%7C%20gemini%20%7C%20openai--compatible-informational.svg)](#provider-support) [![Methodology](https://img.shields.io/badge/methodology-Antemortem-blueviolet.svg)](https://github.com/hibou04-ops/Antemortem) diff --git a/README_KR.md b/README_KR.md index 3660275..4e4a285 100644 --- a/README_KR.md +++ b/README_KR.md @@ -4,7 +4,7 @@ [![License: Apache 2.0](https://img.shields.io/badge/license-Apache--2.0-blue.svg)](LICENSE) [![Python](https://img.shields.io/badge/python-3.11%2B-blue.svg)](https://www.python.org) -[![PyPI](https://img.shields.io/badge/pypi-0.8.0-blue.svg)](https://pypi.org/project/antemortem/) +[![PyPI](https://img.shields.io/pypi/v/antemortem.svg)](https://pypi.org/project/antemortem/) [![Status](https://img.shields.io/badge/status-alpha-orange.svg)](#상태--로드맵) [![Tests](https://img.shields.io/badge/tests-183%20passing-brightgreen.svg)](tests/) [![Providers](https://img.shields.io/badge/providers-anthropic%20%7C%20openai%20%7C%20gemini%20%7C%20openai--compatible-informational.svg)](#provider-지원) diff --git a/pyproject.toml b/pyproject.toml index 5495bc1..9ced7a8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "antemortem" -version = "0.9.0" +version = "0.9.1" description = "Model-agnostic CLI for the Antemortem pre-implementation reconnaissance discipline — scaffold, run (Anthropic / OpenAI / Gemini / OpenAI-compatible), optionally critique via a 2-pass adversarial review, and lint antemortem documents with disk-verified file:line citations. Four-level decision gate for CI." readme = "README.md" requires-python = ">=3.11" diff --git a/src/antemortem/__init__.py b/src/antemortem/__init__.py index 18f5035..a69ce72 100644 --- a/src/antemortem/__init__.py +++ b/src/antemortem/__init__.py @@ -10,4 +10,4 @@ See https://github.com/hibou04-ops/Antemortem for the methodology. """ -__version__ = "0.9.0" +__version__ = "0.9.1"