Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion docs/about/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 🎉
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.6.5'
__version__ = '1.6.6'
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.6.5'
__version__ = '1.6.6'
2 changes: 1 addition & 1 deletion properdocs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Loading