From 3e93213ea55192e1077cbddf9993d06daa5b393b Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Fri, 22 Dec 2023 23:51:48 +0100 Subject: [PATCH] bump to 14.3.0 --- CHANGELOG.md | 3 +++ pdoc/__init__.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eec8ae78..f07fc5b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ ## Unreleased: pdoc next + +## 2023-12-22: pdoc 14.3.0 + - Improve rendering of `.pyi` type stubs containing `@typing.overload`. ([#652](https://github.com/mitmproxy/pdoc/pull/652), @mhils) - `@property` and `@cached_property` attributes now have a "View Source" button. diff --git a/pdoc/__init__.py b/pdoc/__init__.py index bb2d0949..6b74159f 100644 --- a/pdoc/__init__.py +++ b/pdoc/__init__.py @@ -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.2.0" # this is read from setup.py +__version__ = "14.3.0" # this is read from setup.py from pathlib import Path from typing import overload