diff --git a/CHANGELOG.md b/CHANGELOG.md index 87419e5e..73e4b2e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ ## Unreleased: pdoc next + +## 2024-05-16: pdoc 14.5.0 + - The `.. include:` rST directive now supports start-line, end-line, start-after, end-before options. ([#684](https://github.com/mitmproxy/pdoc/pull/684), @frankharkins) - Fix image embedding in included rST files. diff --git a/pdoc/__init__.py b/pdoc/__init__.py index 3e7bd155..04b799b8 100644 --- a/pdoc/__init__.py +++ b/pdoc/__init__.py @@ -475,7 +475,7 @@ def bark(self, loud: bool) -> None: from __future__ import annotations __docformat__ = "markdown" # explicitly disable rST processing in the examples above. -__version__ = "14.4.0" # this is read from setup.py +__version__ = "14.5.0" # this is read from setup.py from pathlib import Path from typing import overload