From c07d97c37962d64aa327daef5aa0ec973d34ab48 Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Sun, 10 Sep 2023 23:10:03 +0200 Subject: [PATCH] bump to 14.1.0 --- CHANGELOG.md | 3 +++ pdoc/__init__.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 264baeb7..11c78475 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ + +## 2023-09-10: pdoc 14.1.0 + - Add compatibility with Python 3.12 ([#620](https://github.com/mitmproxy/pdoc/pull/620), @mhils) - Add support for relative links. Instead of explicitly referring to `mypackage.helpers.foo`, diff --git a/pdoc/__init__.py b/pdoc/__init__.py index 5c097e92..3cbfec94 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.0.0" # this is read from setup.py +__version__ = "14.1.0" # this is read from setup.py from pathlib import Path from typing import overload