Add CHANGELOG.md, serve it in-app at /docs/changelog (closes theta42/theta-env#43)

GitHub Releases already carried real changelog notes per tag, but
those require internet access to view -- exactly what the /docs
route exists to avoid. CHANGELOG.md is a committed, Keep-a-Changelog
style file (backfilled from the v1.1.0/v1.1.1/v1.1.2 release notes),
linked from README and served at /docs/changelog alongside the rest
of the project's docs.
This commit is contained in:
2026-07-16 15:58:26 -04:00
parent 1f10d0db14
commit edf60b3e3d
5 changed files with 40 additions and 0 deletions
+1
View File
@@ -32,6 +32,7 @@ const values = {
// there's no way to make this read outside the doc set below.
const DOCS = {
overview: {title: 'Overview', file: path.join(__dirname, '../../README.md')},
changelog: {title: 'Changelog', file: path.join(__dirname, '../../CHANGELOG.md')},
deployment: {title: 'Deployment', file: path.join(__dirname, '../../DEPLOYMENT.md')},
api: {title: 'API Reference', file: path.join(__dirname, '../api.md')},
installation: {title: 'Installation', file: path.join(__dirname, '../../docs/installation.md')},