From 2803f59467a5fb1b5cba427ee77260722bf3ad2d Mon Sep 17 00:00:00 2001 From: Andreas Pelme Date: Sun, 15 Dec 2024 21:20:13 +0100 Subject: [PATCH] 24.12.0 --- docs/changelog.md | 2 +- htpy/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index a4f30d7..fbd8e32 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,6 +1,6 @@ # Changelog -## NEXT +## 24.12.0 - 2024-12-15 - Fixed handling of non-generator iterators such as `itertools.chain()` as children. Thanks to Aleksei Pirogov ([@astynax](https://github.com/astynax)). [PR #72](https://github.com/pelme/htpy/pull/72). diff --git a/htpy/__init__.py b/htpy/__init__.py index 655ec43..0fe99db 100644 --- a/htpy/__init__.py +++ b/htpy/__init__.py @@ -11,7 +11,7 @@ if t.TYPE_CHECKING: from types import UnionType -__version__ = "24.10.1" +__version__ = "24.12.0" __all__: list[str] = [] BaseElementSelf = t.TypeVar("BaseElementSelf", bound="BaseElement")