diff --git a/docs/README.md b/docs/README.md index 8a9cbfb..532922f 100644 --- a/docs/README.md +++ b/docs/README.md @@ -111,3 +111,4 @@ The full documentation is available at [https://htpy.dev](https://htpy.dev): - [Convert HTML to htpy code](https://htpy.dev/html2htpy/) - [FAQ](https://htpy.dev/faq/) - [References](https://htpy.dev/references/) +- [Changelog](https://htpy.dev/changelog/) diff --git a/docs/changelog.md b/docs/changelog.md new file mode 100644 index 0000000..9bb4c80 --- /dev/null +++ b/docs/changelog.md @@ -0,0 +1,4 @@ +# Changelog + +## 24.8.0 - 2024-08-03 +- Allow conditional rendering based on `bool`. [PR #40](https://github.com/pelme/htpy/pull/41). diff --git a/htpy/__init__.py b/htpy/__init__.py index bb7d6a3..7d50285 100644 --- a/htpy/__init__.py +++ b/htpy/__init__.py @@ -1,6 +1,6 @@ from __future__ import annotations -__version__ = "24.7.2" +__version__ = "24.8.0" __all__: list[str] = [] import functools diff --git a/mkdocs.yml b/mkdocs.yml index fb2f2ad..d3115fb 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -19,6 +19,7 @@ nav: - html2htpy.md - faq.md - references.md + - changelog.md markdown_extensions: - admonition - pymdownx.highlight: