File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 44
55## Unreleased: pdoc next
66
7+
8+ ## 2024-01-18: pdoc 14.4.0
9+
710 - Private methods can now be included in the documentation by adding ` @public ` to the docstring.
811 This complements the existing ` @private ` annotation.
912 ([ #655 ] ( https://github.com/mitmproxy/pdoc/pull/655 ) , @tmeyier )
10- - pdoc now correctly extracts the source_file of wrapped functions.
13+ - pdoc now correctly detects the source file for wrapped functions.
1114 ([ #657 ] ( https://github.com/mitmproxy/pdoc/pull/657 ) , @tmeyier )
15+ - Fixed a bug where memory addresses were not removed from output.
16+ ([ #663 ] ( https://github.com/mitmproxy/pdoc/pull/663 ) , @mhils )
1217
1318## 2023-12-22: pdoc 14.3.0
1419
Original file line number Diff line number Diff line change @@ -465,7 +465,7 @@ def bark(self, loud: bool) -> None:
465465from __future__ import annotations
466466
467467__docformat__ = "markdown" # explicitly disable rST processing in the examples above.
468- __version__ = "14.3 .0" # this is read from setup.py
468+ __version__ = "14.4 .0" # this is read from setup.py
469469
470470from pathlib import Path
471471from typing import overload
You can’t perform that action at this time.
0 commit comments