Skip to content

Commit 8916055

Browse files
committed
bump to 14.4.0
1 parent 3b30281 commit 8916055

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,16 @@
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

pdoc/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ def bark(self, loud: bool) -> None:
465465
from __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

470470
from pathlib import Path
471471
from typing import overload

0 commit comments

Comments
 (0)