diff --git a/CHANGELOG.md b/CHANGELOG.md index 4fe499d..72f8e3c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 0.12.0 (2024-11-26) + +[Compare the full difference.](https://github.com/callowayproject/generate-changelog/compare/0.11.0...0.12.0) + +### New + +- Added additional files to documentation. [6836603](https://github.com/callowayproject/generate-changelog/commit/68366035abff38e98d79f501bc9aeab233da890e) + +### Updates + +- Changed the documentation generator from Sphinx to MkDocs. [770c70d](https://github.com/callowayproject/generate-changelog/commit/770c70dd5587c032a434b1cceb49e3ae6a5bf727) + + ## 0.11.0 (2024-11-24) [Compare the full difference.](https://github.com/callowayproject/generate-changelog/compare/0.10.2...0.11.0) diff --git a/generate_changelog/__init__.py b/generate_changelog/__init__.py index 877404e..3444b34 100644 --- a/generate_changelog/__init__.py +++ b/generate_changelog/__init__.py @@ -1,3 +1,3 @@ """Generate and update a changelog from git commits.""" -__version__: str = "0.11.0" +__version__: str = "0.12.0" diff --git a/pyproject.toml b/pyproject.toml index de28a0b..788338a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -268,7 +268,7 @@ quiet = true [tool.bumpversion] allow_dirty = true -current_version = "0.11.0" +current_version = "0.12.0" commit = true commit_args = "--no-verify" tag = true