Version 0.2.0
Pre-release
Pre-release
SQLStratum v0.2.0
SQLStratum v0.2.0 introduces first-class documentation infrastructure and automated publishing support with Read the Docs.
Highlights
- Added MkDocs-based documentation site with Material theme.
- Added Read the Docs config (
.readthedocs.yaml, config v2). - Added structured docs pages for getting started, debugging, hydration, roadmap, changelog, architecture, and deprecations.
- Added deterministic docs dependency setup via
docs/requirements.txt. - Added CI documentation build validation.
Documentation stack
mkdocs.ymldocs/content pages.readthedocs.yamldocs/requirements.txt
Local docs workflow
Install docs dependencies:
python -m pip install -r docs/requirements.txtServe locally:
mkdocs serveBuild static docs:
python -m mkdocs build --cleanRelease automation
v0.2.0 also standardizes release automation with poethepoet:
python -m pip install -e ".[dev]"
poe releasepoe release runs:
python -m build --no-isolationpython -m twine check dist/*python -m twine upload dist/*
Notes
- This release focuses on documentation and release workflow maturity.
- Runtime API behavior remains aligned with the existing SQLStratum layering model.