diff --git a/Makefile b/Makefile index 6fdd37f..2498e18 100644 --- a/Makefile +++ b/Makefile @@ -19,3 +19,6 @@ deploy: qa test test: hatch run all + +changelog: + cz changelog --file-name docs/changelog.md --incremental diff --git a/docs/changelog.md b/docs/changelog.md index 2a17b97..3bee4b9 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -3,6 +3,11 @@ !!!tip "Reminder" We try our best to follow [Semantic Versioning v2](https://semver.org/) starting from 1.0.0. +## 1.1.1 (2023-10-13) + +- **user_overrides**: extra overrides should be applied as legacy dict, thx to @Andygol +- **docs**: add and correct lang config overrides examples + ## 1.1.0 (2023-10-06) - **material**: add a special "null" locale to generated a fixed fixed item in the lang switcher (#270) diff --git a/mkdocs_static_i18n/__init__.py b/mkdocs_static_i18n/__init__.py index ca4d5e3..fa912ac 100644 --- a/mkdocs_static_i18n/__init__.py +++ b/mkdocs_static_i18n/__init__.py @@ -1,6 +1,6 @@ from pathlib import PurePath -version = "1.1.0" +version = "1.1.1" def is_relative_to(src_path, dest_path):