Skip to content

Commit

Permalink
bump to 14.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mhils committed Jan 17, 2024
1 parent 3b30281 commit 8916055
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion pdoc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8916055

Please sign in to comment.