Skip to content

Commit 18e1908

Browse files
bk86aclaude
andcommitted
fix: bump __version__ to 0.18.0 (was stale at 0.14.0)
app/__init__.py has been hardcoded to "0.14.0" since the v0.14 release. Every release between v0.15 and v0.18 updated CHANGELOG and tagged Git but left __version__ untouched, so the deployed openapi.json kept reporting 0.14.0. Bumping to match the current release. Future releases need to update __version__ alongside CHANGELOG until version derivation is automated (CHANGELOG.md isn't copied into the container image, so the obvious read-from-CHANGELOG approach won't work without Dockerfile changes). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 9b97017 commit 18e1908

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
66

77
## [Unreleased]
88

9+
### Fixed
10+
11+
- **`__version__` was stale at `0.14.0`** since the v0.14 release; openapi.json and FastAPI's `version` field have been reporting the wrong number for every release since then. Bumped to `0.18.0`. Future releases need to update `app/__init__.py` alongside the CHANGELOG until version derivation is automated.
12+
913
## [0.18.0] - 2026-05-01
1014

1115
### Added

app/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.14.0"
1+
__version__ = "0.18.0"

0 commit comments

Comments
 (0)