diff --git a/CHANGELOG.md b/CHANGELOG.md index 5eb9ad5..66bd37d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ ## [Unreleased] +## [0.3.1] — 2026-08-01 + +A patch for one bug, shipped on its own because of how it fails. `Notification` +discarded body content in every theme and both engines, and in django-cotton it +did so **silently** — no error, no warning, and a call site that reads +correctly. Anyone using the natural container form has been getting an empty +box, and nothing in their own code or logs would say so. This predates 0.1.1, +so every release to date is affected. + +Upgrade if you pass children to `` or ``. +If every call site passes `message=`, nothing changes for you. + +Nothing else changed. The JinjaX signature only loosens and the cotton wrapper +only gains a default, so every existing `message=` call site renders +byte-identically to 0.3.0. No migration. + ### Fixed — `Notification` silently discarded its body content (#65) - **Every theme, both engines, rendered the scalar `message` prop and nothing diff --git a/pyproject.toml b/pyproject.toml index 86cc27a..81e3754 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "cf-ui" -version = "0.3.0" +version = "0.3.1" description = "CSS framework UI kit for component-framework — Bulma, Bootstrap, Foundation, Fomantic, DaisyUI" readme = "README.md" requires-python = ">=3.11" diff --git a/src/cf_ui/_version.py b/src/cf_ui/_version.py index 493f741..260c070 100644 --- a/src/cf_ui/_version.py +++ b/src/cf_ui/_version.py @@ -1 +1 @@ -__version__ = "0.3.0" +__version__ = "0.3.1"