diff --git a/CHANGELOG.md b/CHANGELOG.md
index 41ce398..e8f31fd 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,33 @@ All notable changes to ShellDocs land here. Format follows [Keep a Changelog](ht
## [Unreleased]
+## [0.1.6-alpha] — 2026-08-22
+
+Three authoring / SEO features that stack together to make writing per-component docs and shipping a public site substantially less manual.
+
+### Added
+
+- **`` primitive.** Renders a full props table for any registered component by reflecting on its `[Parameter]` properties. Reads type (compact C#-ish rendering including nullability and generic args), default (from `[DefaultValue]` or from instantiating the type and reading the property), required flag (from `[EditorRequired]`), and description (from XML doc `` on the property, loaded from the sidecar `.xml` next to the DLL). Replaces the "hand-copy every prop into ``" pattern that every consumer was doing today. Existing `` / `` stay for cases where hand curation is preferable.
+- **Named `RenderFragment` slots in `razor:preview` fences and inline component tags.** Direct-child tags whose name matches a target component's `[Parameter] RenderFragment` prop now route into that named slot instead of being flattened into `ChildContent`. Authors can finally write compositional previews:
+ ```razor
+
+
+ Body text.
+
+
+ ```
+ and have `` render into `Alert.Icon`, `