diff --git a/CHANGELOG.md b/CHANGELOG.md index 85dae93..a5d3071 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.3] - 2024-04-05 + ### Fixed - Made geometry orientation agnostic hash algorithm @@ -167,7 +169,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Created QuackOSM repository - Implemented PbfFileReader -[Unreleased]: https://github.com/kraina-ai/quackosm/compare/0.5.2...HEAD +[Unreleased]: https://github.com/kraina-ai/quackosm/compare/0.5.3...HEAD + +[0.5.3]: https://github.com/kraina-ai/quackosm/compare/0.5.2...0.5.3 [0.5.2]: https://github.com/kraina-ai/quackosm/compare/0.5.1...0.5.2 diff --git a/pyproject.toml b/pyproject.toml index f336c57..785978d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "QuackOSM" -version = "0.5.2" +version = "0.5.3" description = "An open-source tool for reading OpenStreetMap PBF files using DuckDB" authors = [{ name = "Kamil Raczycki", email = "kraczycki@kraina.ai" }] dependencies = [ @@ -173,7 +173,7 @@ close-quotes-on-newline = true wrap-one-line = true [tool.bumpver] -current_version = "0.5.2" +current_version = "0.5.3" version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]" commit_message = "chore(CI/CD): bump version {old_version} -> {new_version}" commit = true diff --git a/quackosm/__init__.py b/quackosm/__init__.py index 5d1f209..a30fc47 100644 --- a/quackosm/__init__.py +++ b/quackosm/__init__.py @@ -14,7 +14,7 @@ from quackosm.pbf_file_reader import PbfFileReader __app_name__ = "QuackOSM" -__version__ = "0.5.2" +__version__ = "0.5.3" __all__ = [ "PbfFileReader",