From bb7e8b62185b11d9f59bb7f50b13c15134f62f8a Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Fri, 30 Aug 2024 13:21:48 +0100 Subject: [PATCH] Version 1.6.1. (#3819) --- docs/about/release-notes.md | 18 ++++++++++++++++++ mkdocs/__init__.py | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/docs/about/release-notes.md b/docs/about/release-notes.md index 74528443..4fd81c15 100644 --- a/docs/about/release-notes.md +++ b/docs/about/release-notes.md @@ -27,6 +27,24 @@ The current and past members of the MkDocs team. * [@oprypin](https://github.com/oprypin/) * [@ultrabug](https://github.com/ultrabug/) +## Version 1.6.1 (2024-08-30) + +### Fixed + +* Fix build error when environment variable `SOURCE_DATE_EPOCH=0` is set. #3795 +* Fix build error when `mkdocs_theme.yml` config is empty. #3700 +* Support `python -W` and `PYTHONWARNINGS` instead of overriding the configuration. #3809 +* Support running with Docker under strict mode, by removing `0.0.0.0` dev server warning. #3784 +* Drop unnecessary `changefreq` from `sitemap.xml`. #3629 +* Fix JavaScript console error when closing menu dropdown. #3774 +* Fix JavaScript console error that occur on repeated clicks. #3730 +* Fix JavaScript console error that can occur on dropdown selections. #3694 + +### Added + +* Added translations for Dutch. #3804 +* Added and updated translations for Chinese (Simplified). #3684 + ## Version 1.6.0 (2024-04-20) ### Local preview diff --git a/mkdocs/__init__.py b/mkdocs/__init__.py index 87297590..7652a394 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.6.0' +__version__ = '1.6.1'