Skip to content

Commit

Permalink
bump to 13.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mhils committed Mar 31, 2023
1 parent bf3fe14 commit c7556a6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,20 @@

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


## 2023-03-31: pdoc 13.1.0

- Add support for rendering [Mermaid diagrams](https://mermaid.js.org/) by passing `--mermaid`.
([#525](https://github.com/mitmproxy/pdoc/pull/525), @thearchitector, @mhils)
- Add rudimentary support for `typing_extensions.Literal` on Python 3.7.
([#527](https://github.com/mitmproxy/pdoc/pull/527), @mhils)

## 2023-03-21: pdoc 13.0.1

- Add additional Jinja2 blocks to allow a more fine-grained customization of the menu.
([#521](https://github.com/mitmproxy/pdoc/pull/521), @mikkelakromann)
- Fix a crash in pdoc 13.0.0 when `__init__.py` is passed as a file to pdoc.
([#522](https://github.com/mitmproxy/pdoc/pull/522), @mhils)
- Add rudimentary support for `typing_extensions.Literal` on Python 3.7.
([#527](https://github.com/mitmproxy/pdoc/pull/527), @mhils)

## 2023-02-19: pdoc 13.0.0

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.0.1" # this is read from setup.py
__version__ = "13.1.0" # this is read from setup.py

from pathlib import Path
from typing import overload
Expand Down

0 comments on commit c7556a6

Please sign in to comment.