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
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 `<c-cf.notification>` or `<Cf:Notification>`.
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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/cf_ui/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.0"
__version__ = "0.3.1"
Loading