diff --git a/docs/changelog.md b/docs/changelog.md index 110e034..20f67c6 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,6 +1,6 @@ # Changelog -## next +## 24.10.0 - 2024-10-23 - Implement `Element.__html__`. This avoids double escaping when passed to `markupsafe.escape` and Django's `django.utils.html.conditional_escape`. [PR #65](https://github.com/pelme/htpy/pull/65). - Raise errors directly on invalid children. This avoids cryptic stack traces. diff --git a/htpy/__init__.py b/htpy/__init__.py index 85142d0..5da61ba 100644 --- a/htpy/__init__.py +++ b/htpy/__init__.py @@ -1,6 +1,6 @@ from __future__ import annotations -__version__ = "24.9.1" +__version__ = "24.10.0" __all__: list[str] = [] import dataclasses