From e864d0306d245ab9de7941fce8e93ddab54bb024 Mon Sep 17 00:00:00 2001 From: Oleh Prypin Date: Mon, 16 Mar 2026 23:41:29 +0100 Subject: [PATCH] Release notes for ProperDocs 1.6.6 --- docs/about/release-notes.md | 14 +++++++++++++- .../properdocs_theme_mkdocs/__init__.py | 2 +- .../properdocs_theme_readthedocs/__init__.py | 2 +- properdocs/__init__.py | 2 +- 4 files changed, 16 insertions(+), 4 deletions(-) diff --git a/docs/about/release-notes.md b/docs/about/release-notes.md index 48fb63b1..bcdd90aa 100644 --- a/docs/about/release-notes.md +++ b/docs/about/release-notes.md @@ -14,9 +14,21 @@ You can determine your currently installed version using `properdocs --version`: ```console $ properdocs --version -properdocs, version 1.6.5 from /path/to/properdocs (Python 3.13) +properdocs, version 1.6.6 from /path/to/properdocs (Python 3.13) ``` +## Version 1.6.6 (2026-03-16) + +* Add a warning in case there isn't any theme specified in the config (#39) + + The theme still defaults to 'mkdocs' but is *not* included in the package. That's why it made sense to warn about this now, and plan to remove this default at a later point. + +* Support also the 'mkdocs' logger name, in case plugins refer to it directly (#38) + + This was an omission in the backwards support of MkDocs plugins, causing logged messages of some plugins to be skipped. + +See [commit log](https://github.com/properdocs/properdocs/compare/v1.6.5...v1.6.6). + ## Version 1.6.5 (2026-03-15) This is the first version of ProperDocs 🎉 diff --git a/packages/properdocs-theme-mkdocs/properdocs_theme_mkdocs/__init__.py b/packages/properdocs-theme-mkdocs/properdocs_theme_mkdocs/__init__.py index f3df7f04..008e8016 100644 --- a/packages/properdocs-theme-mkdocs/properdocs_theme_mkdocs/__init__.py +++ b/packages/properdocs-theme-mkdocs/properdocs_theme_mkdocs/__init__.py @@ -1 +1 @@ -__version__ = '1.6.5' +__version__ = '1.6.6' diff --git a/packages/properdocs-theme-readthedocs/properdocs_theme_readthedocs/__init__.py b/packages/properdocs-theme-readthedocs/properdocs_theme_readthedocs/__init__.py index f3df7f04..008e8016 100644 --- a/packages/properdocs-theme-readthedocs/properdocs_theme_readthedocs/__init__.py +++ b/packages/properdocs-theme-readthedocs/properdocs_theme_readthedocs/__init__.py @@ -1 +1 @@ -__version__ = '1.6.5' +__version__ = '1.6.6' diff --git a/properdocs/__init__.py b/properdocs/__init__.py index 70d83859..d8b21216 100644 --- a/properdocs/__init__.py +++ b/properdocs/__init__.py @@ -2,4 +2,4 @@ # For acceptable version formats, see https://www.python.org/dev/peps/pep-0440/ -__version__ = '1.6.5' +__version__ = '1.6.6'