File tree 2 files changed +7
-2
lines changed
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 4
4
5
5
## Unreleased: pdoc next
6
6
7
+
8
+ ## 2024-01-18: pdoc 14.4.0
9
+
7
10
- Private methods can now be included in the documentation by adding ` @public ` to the docstring.
8
11
This complements the existing ` @private ` annotation.
9
12
([ #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.
11
14
([ #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 )
12
17
13
18
## 2023-12-22: pdoc 14.3.0
14
19
Original file line number Diff line number Diff line change @@ -465,7 +465,7 @@ def bark(self, loud: bool) -> None:
465
465
from __future__ import annotations
466
466
467
467
__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
469
469
470
470
from pathlib import Path
471
471
from typing import overload
You can’t perform that action at this time.
0 commit comments