Skip to content

Commit

Permalink
bump to 14.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mhils committed Dec 13, 2023
1 parent 281ee74 commit 1ce10cb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,15 @@

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

## 2023-12-13: pdoc 14.2.0

- pdoc now documents PyO3 or pybind11 submodules that are not picked up by Python's builtin pkgutil module.
([#633](https://github.com/mitmproxy/pdoc/issues/633), @mhils)
- pdoc now supports Python 3.12's `type` statements and has improved `TypeAlias` rendering.
([#651](https://github.com/mitmproxy/pdoc/pull/651), @mhils)
- Imports in a TYPE_CHECKING section that reference members defined in another module's TYPE_CHECKING section now work
correctly.
([#649](https://github.com/mitmproxy/pdoc/pull/649), @mhils)
- pdoc now supports Python 3.12's `type` statements and has improved `TypeAlias` rendering.
([#651](https://github.com/mitmproxy/pdoc/pull/651), @mhils)
- Add support for `code-block` ReST directives
([#624](https://github.com/mitmproxy/pdoc/pull/624), @JCGoran)
- If a variable's value meets certain entropy criteria and matches an environment variable value,
Expand Down
2 changes: 1 addition & 1 deletion pdoc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ def bark(self, loud: bool) -> None:
from __future__ import annotations

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

from pathlib import Path
from typing import overload
Expand Down

0 comments on commit 1ce10cb

Please sign in to comment.