From 3d1b0113c2e3785c59f263c1bff9a76382dc883e Mon Sep 17 00:00:00 2001 From: Oleh Prypin Date: Tue, 2 May 2023 23:16:34 +0200 Subject: [PATCH] Release 1.4.3 (#3208) --- docs/about/release-notes.md | 17 +++++++++++++++++ mkdocs/__init__.py | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/docs/about/release-notes.md b/docs/about/release-notes.md index 6c7e8e8b..52f66351 100644 --- a/docs/about/release-notes.md +++ b/docs/about/release-notes.md @@ -27,6 +27,23 @@ The current and past members of the MkDocs team. * [@oprypin](https://github.com/oprypin/) * [@ultrabug](https://github.com/ultrabug/) +## Version 1.4.3 (2023-05-02) + +* Bugfix: for the `hooks` feature, modules no longer fail to load if using some advanced Python features like dataclasses (#3193) + +* Bugfix: Don't create `None` sitemap entries if the page has no populated URL - affects sites that exclude some files from navigation ([`07a297b`](https://github.com/mkdocs/mkdocs/commit/07a297b3b4de4a1b49469b1497ee34039b9f38fa)) + +* "readthedocs" theme: + * Accessibility: add aria labels to Home logo (#3129) and search inputs (#3046) + * "readthedocs" theme now supports `hljs_style:` config, same as "mkdocs" theme (#3199) + +* Translations: + * Built-in themes now also support Indonesian language (#3154) + * Fixed `zh_CN` translation (#3125) + * `tr_TR` translation becomes just `tr` - usage should remain unaffected (#3195) + +See [commit log](https://github.com/mkdocs/mkdocs/compare/1.4.2...1.4.3). + ## Version 1.4.2 (2022-11-01) * Officially support Python 3.11 (#3020) diff --git a/mkdocs/__init__.py b/mkdocs/__init__.py index 2c222320..24ff6f7a 100644 --- a/mkdocs/__init__.py +++ b/mkdocs/__init__.py @@ -2,4 +2,4 @@ # For acceptable version formats, see https://www.python.org/dev/peps/pep-0440/ -__version__ = '1.4.2' +__version__ = '1.4.3'