From 776b7a28745593e22ac742204c67e516464e4628 Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Tue, 27 Aug 2024 08:24:34 +0200 Subject: [PATCH] bump to 14.6.1 --- CHANGELOG.md | 3 +++ pdoc/__init__.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index da93e31e..7398e6d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ ## Unreleased: pdoc next + +## 2024-08-27: pdoc 14.6.1 + - Fix a bug where entire modules would be excluded by `--no-include-undocumented`. To exclude modules, see https://pdoc.dev/docs/pdoc.html#exclude-submodules-from-being-documented. ([#728](https://github.com/mitmproxy/pdoc/pull/728), @mhils) diff --git a/pdoc/__init__.py b/pdoc/__init__.py index f218f57e..52851bf2 100644 --- a/pdoc/__init__.py +++ b/pdoc/__init__.py @@ -481,7 +481,7 @@ def bark(self, loud: bool) -> None: from __future__ import annotations __docformat__ = "markdown" # explicitly disable rST processing in the examples above. -__version__ = "14.6.0" # this is read from setup.py +__version__ = "14.6.1" # this is read from setup.py from pathlib import Path from typing import overload