Skip to content

Commit

Permalink
bump to 14.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mhils committed Jun 19, 2023
1 parent 0dddb3f commit 3ce5ab3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

<!-- ✨ You do not need to add a pull request reference or an author, this will be added automatically by CI. ✨ -->


## 2023-06-19: pdoc 14.0.0

- Functions, classes and variables can now be hidden from documentation by adding `@private` to their docstring.
([#578](https://github.com/mitmproxy/pdoc/pull/578), @mhils)
- pdoc can now be configured to skip classes/functions/variables without docstrings by passing
Expand Down
2 changes: 1 addition & 1 deletion pdoc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ def bark(self, loud: bool) -> None:
from __future__ import annotations

__docformat__ = "markdown" # explicitly disable rST processing in the examples above.
__version__ = "13.1.1" # this is read from setup.py
__version__ = "14.0.0" # this is read from setup.py

from pathlib import Path
from typing import overload
Expand Down

0 comments on commit 3ce5ab3

Please sign in to comment.