diff --git a/CHANGELOG.md b/CHANGELOG.md index 2cbfdf4b..6136bd7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## v2.10.1 (2023-09-02) + +### Fix + +- **ci**: improve automatic template synchronization (#537) + +### Refactor + +- **docs**: switch to sphinx-markdown-builder package (#585) + ## v2.10.0 (2023-07-22) ### Feat diff --git a/pyproject.toml b/pyproject.toml index 1a59a5c2..23b29d4a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -96,7 +96,7 @@ version_files = [ "src/package/__init__.py:__version__", ] major_version_zero = false -version = "2.10.0" +version = "2.10.1" # https://github.com/pytest-dev/pytest-cov diff --git a/src/package/__init__.py b/src/package/__init__.py index 7c42d8c9..f4b3a8f5 100644 --- a/src/package/__init__.py +++ b/src/package/__init__.py @@ -6,4 +6,4 @@ # The version of this package. There's no comprehensive, official list of other # magic constants, so we stick with this one only for now. See also this conversation: # https://stackoverflow.com/questions/38344848/is-there-a-comprehensive-table-of-pythons-magic-constants -__version__ = "2.10.0" +__version__ = "2.10.1"