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
26 changes: 25 additions & 1 deletion docs/about/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,33 @@ You can determine your currently installed version using `properdocs --version`:

```console
$ properdocs --version
properdocs, version 1.6.6 from /path/to/properdocs (Python 3.13)
properdocs, version 1.6.7 from /path/to/properdocs (Python 3.13)
```

## Version 1.6.7 (2026-03-20)

* Fix: Do not skip anchor validation warnings when `--verbose` mode happens to be enabled (#57)

* Fix `mkdocs serve` crashing after the first reload if the config is passed from stdin (#56)

* Fix crashes when trying to parse invalid URLs (#55)

* Change the environment variable that is used to suppress the warning message when running through MkDocs. (#53)

The environment variable is now `DISABLE_MKDOCS_2_WARNING=true` instead of `NO_MKDOCS_2_WARNING=true`.

Apologies for the inconvenience. [A change in mkdocs-material](https://github.com/squidfunk/mkdocs-material/commit/51d9b76636431814df924bcda27485b16023978b) made this environment variable unusable - it's always set and there's no reasonable way to detect whether it was actually set on the command line, so we are forced to use a different environment variable now.

* Eliminate dependency on 'mergedeep' (unmaintained) - no change in functionality (#48)

See [commit log](https://github.com/properdocs/properdocs/compare/v1.6.6...v1.6.7).

### `properdocs-theme-mkdocs` 1.6.7

* Fix ability to toggle dark mode when `highlightjs: false` is set (#54)

* Fix the dropdown submenu marker being invisible (#58)

## Version 1.6.6 (2026-03-16)

* Add a warning in case there isn't any theme specified in the config (#39)
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.6.6'
__version__ = '1.6.7'
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.6.6'
__version__ = '1.6.7'
6 changes: 1 addition & 5 deletions properdocs/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1 @@
#!/usr/bin/env python


# For acceptable version formats, see https://www.python.org/dev/peps/pep-0440/
__version__ = '1.6.6'
__version__ = '1.6.7'
Loading