Skip to content

Commit aa9eabe

Browse files
authored
Release 1.4.1 (#3004)
1 parent 79fa445 commit aa9eabe

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

docs/about/release-notes.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,27 @@ The current and past members of the MkDocs team.
2727
* [@oprypin](https://github.com/oprypin/)
2828
* [@ultrabug](https://github.com/ultrabug/)
2929

30+
## Version 1.4.1 (2022-10-15)
31+
32+
* Support theme-namespaced plugin loading (#2998)
33+
34+
Plugins' entry points can be named as 'sometheme/someplugin'. That will have the following outcome:
35+
36+
* If the current theme is 'sometheme', the plugin 'sometheme/someplugin' will always be preferred over 'someplugin'.
37+
* If the current theme *isn't* 'sometheme', the only way to use this plugin is by specifying `plugins: [sometheme/someplugin]`.
38+
39+
One can also specify `plugins: ['/someplugin']` instead of `plugins: ['someplugin']` to definitely avoid the theme-namespaced plugin.
40+
41+
* Windows: 'colorama' is now a dependency of MkDocs, to ensure colorful log output (#2987)
42+
43+
* Plugin-related config options have more reliable validation and error reporting (#2997)
44+
45+
* Translation sub-commands of `setup.py` were completely dropped. See documentation [[1]](../about/contributing.md#submitting-changes-to-the-builtin-themes) [[2]](../dev-guide/translations.md#updating-the-translation-catalogs) for their new replacements (#2990)
46+
47+
* The ['mkdocs' package](https://pypi.org/project/mkdocs/#files) (wheel and source) is now produced by Hatch build system and pyproject.toml instead of setup.py (#2988)
48+
49+
Other small improvements; see [commit log](https://github.com/mkdocs/mkdocs/compare/1.4.0...1.4.1).
50+
3051
## Version 1.4.0 (2022-09-27)
3152

3253
### Feature upgrades

mkdocs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33

44
# For acceptable version formats, see https://www.python.org/dev/peps/pep-0440/
5-
__version__ = '1.4.0'
5+
__version__ = '1.4.1'

0 commit comments

Comments
 (0)