diff --git a/CHANGELOG.md b/CHANGELOG.md index 470c4e80..bfc842db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,11 +4,16 @@ ## Unreleased: pdoc next + +## 2024-01-18: pdoc 14.4.0 + - Private methods can now be included in the documentation by adding `@public` to the docstring. This complements the existing `@private` annotation. ([#655](https://github.com/mitmproxy/pdoc/pull/655), @tmeyier) - - pdoc now correctly extracts the source_file of wrapped functions. + - pdoc now correctly detects the source file for wrapped functions. ([#657](https://github.com/mitmproxy/pdoc/pull/657), @tmeyier) + - Fixed a bug where memory addresses were not removed from output. + ([#663](https://github.com/mitmproxy/pdoc/pull/663), @mhils) ## 2023-12-22: pdoc 14.3.0 diff --git a/pdoc/__init__.py b/pdoc/__init__.py index 07cea144..5b85dc6d 100644 --- a/pdoc/__init__.py +++ b/pdoc/__init__.py @@ -465,7 +465,7 @@ def bark(self, loud: bool) -> None: from __future__ import annotations __docformat__ = "markdown" # explicitly disable rST processing in the examples above. -__version__ = "14.3.0" # this is read from setup.py +__version__ = "14.4.0" # this is read from setup.py from pathlib import Path from typing import overload