diff --git a/CHANGELOG.md b/CHANGELOG.md index 27a0f46..b5354cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,8 @@ and this project attempts to adhere to [Semantic Versioning](https://semver.org/ ## [Unreleased] +## [0.5.0] + ### Changed - Added normalization of anchor-wrapped headings in base HTML preprocessor for better markdown output @@ -79,10 +81,11 @@ and this project attempts to adhere to [Semantic Versioning](https://semver.org/ - Josh Thomas (maintainer) -[unreleased]: https://github.com/joshuadavidthomas/docs2markdown/compare/v0.4.1...HEAD +[unreleased]: https://github.com/joshuadavidthomas/docs2markdown/compare/v0.5.0...HEAD [0.1.0]: https://github.com/joshuadavidthomas/docs2markdown/releases/tag/v0.1.0 [0.1.1]: https://github.com/joshuadavidthomas/docs2markdown/releases/tag/v0.1.1 [0.2.0]: https://github.com/joshuadavidthomas/docs2markdown/releases/tag/v0.2.0 [0.3.0]: https://github.com/joshuadavidthomas/docs2markdown/releases/tag/v0.3.0 [0.4.0]: https://github.com/joshuadavidthomas/docs2markdown/releases/tag/v0.4.0 [0.4.1]: https://github.com/joshuadavidthomas/docs2markdown/releases/tag/v0.4.1 +[0.5.0]: https://github.com/joshuadavidthomas/docs2markdown/releases/tag/v0.5.0 diff --git a/pyproject.toml b/pyproject.toml index 8012b47..576dfd6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -67,7 +67,7 @@ readme = "README.md" # ]]] --> requires-python = ">=3.10" # [[[end]]] -version = "0.4.1" +version = "0.5.0" [project.scripts] docs2markdown = "docs2markdown.cli:app" @@ -80,7 +80,7 @@ Source = "https://github.com/joshuadavidthomas/docs2markdown" [tool.bumpver] commit = true commit_message = ":bookmark: bump version {old_version} -> {new_version}" -current_version = "0.4.1" +current_version = "0.5.0" push = true tag = false version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]" diff --git a/tests/test_version.py b/tests/test_version.py index d501217..a036514 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -4,4 +4,4 @@ def test_version(): - assert __version__ == "0.4.1" + assert __version__ == "0.5.0" diff --git a/uv.lock b/uv.lock index b5fb1ea..7a6ac72 100644 --- a/uv.lock +++ b/uv.lock @@ -208,7 +208,7 @@ wheels = [ [[package]] name = "docs2markdown" -version = "0.4.1" +version = "0.5.0" source = { editable = "." } dependencies = [ { name = "beautifulsoup4", extra = ["lxml"] },