Skip to content

Commit ccda38b

Browse files
committed
Release notes for ProperDocs 1.6.7
1 parent 8bea071 commit ccda38b

File tree

4 files changed

+26
-8
lines changed

4 files changed

+26
-8
lines changed

docs/about/release-notes.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,31 @@ You can determine your currently installed version using `properdocs --version`:
1414

1515
```console
1616
$ properdocs --version
17-
properdocs, version 1.6.6 from /path/to/properdocs (Python 3.13)
17+
properdocs, version 1.6.7 from /path/to/properdocs (Python 3.13)
1818
```
1919

20+
## Version 1.6.7 (2026-03-20)
21+
22+
* Fix: Do not skip anchor validation warnings when `--verbose` mode happens to be enabled (#57)
23+
24+
* Fix `mkdocs serve` crashing after the first reload if the config is passed from stdin (#56)
25+
26+
* Fix crashes when trying to parse invalid URLs (#55)
27+
28+
* Change the environment variable that is used to suppress the warning message when running through MkDocs. (#53)
29+
30+
The environment variable is now `DISABLE_MKDOCS_2_WARNING=true` instead of `NO_MKDOCS_2_WARNING=true`.
31+
32+
Apologies for the inconvenience. [A change in mkdocs-material](https://github.com/squidfunk/mkdocs-material/commit/51d9b76636431814df924bcda27485b16023978b) made this environment 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.
33+
34+
* Eliminate dependency on 'mergedeep' (unmaintained) - no change in functionality (#48)
35+
36+
### `properdocs-theme-mkdocs` 1.6.7
37+
38+
* Fix ability to toggle dark mode when `highlightjs: false` is set (#54)
39+
40+
* Fix the dropdown submenu marker being invisible (#58)
41+
2042
## Version 1.6.6 (2026-03-16)
2143

2244
* Add a warning in case there isn't any theme specified in the config (#39)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.6.6'
1+
__version__ = '1.6.7'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.6.6'
1+
__version__ = '1.6.7'

properdocs/__init__.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1 @@
1-
#!/usr/bin/env python
2-
3-
4-
# For acceptable version formats, see https://www.python.org/dev/peps/pep-0440/
5-
__version__ = '1.6.6'
1+
__version__ = '1.6.7'

0 commit comments

Comments
 (0)