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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ for an adapter and an adapter fix should not drag the wheels behind it.

## [Unreleased]

## 0.2.0 — 2026-08-18

### Changed

- **The route table is written once.** Six adapters — FastAPI, Litestar,
Expand Down
2 changes: 1 addition & 1 deletion src/dynamic_config_web/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def health(db: Database = Depends(config_dependency(config))):

#: The distribution's version, and the single place it is written: the
#: build backend reads this file rather than the other way round.
__version__ = "0.1.0"
__version__ = "0.2.0"

from ._diagnostics import (
Guard,
Expand Down
Loading