diff --git a/docs/changelog.md b/docs/changelog.md index 8540d50..767566d 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,6 +1,6 @@ # Changelog -## Next - Unreleased +## 24.8.1 - 2024-08-16 - Added the `comment()` function to render HTML comments. [Documentation](usage.md#html-comments) / [Issue #42](https://github.com/pelme/htpy/issues/42). @@ -12,6 +12,6 @@ ## 24.8.0 - 2024-08-03 - Allow conditional rendering based on `bool`. [PR #40](https://github.com/pelme/htpy/pull/41). -- This is the first version with a proper changelog. For previous versions and changes, -please see the [git commit + +For previous versions and changes, please see the [git commit history](https://github.com/pelme/htpy/commits/main/?since=2023-10-19&until=2024-07-17). diff --git a/htpy/__init__.py b/htpy/__init__.py index 4689f72..4001d92 100644 --- a/htpy/__init__.py +++ b/htpy/__init__.py @@ -1,6 +1,6 @@ from __future__ import annotations -__version__ = "24.8.0" +__version__ = "24.8.1" __all__: list[str] = [] import functools