diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d43f27..0cda261 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.9.1] - 2024-08-28 + ### Fix - Changed `geopy` dependency to required, to fix missing import for `quackosm.geocode_to_geometry` function @@ -340,7 +342,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.9.0...HEAD +[Unreleased]: https://github.com/kraina-ai/quackosm/compare/0.9.1...HEAD + +[0.9.1]: https://github.com/kraina-ai/quackosm/compare/0.9.0...0.9.1 [0.9.0]: https://github.com/kraina-ai/quackosm/compare/0.8.3...0.9.0 diff --git a/pyproject.toml b/pyproject.toml index fabfb31..bbbcf18 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "QuackOSM" -version = "0.9.0" +version = "0.9.1" description = "An open-source tool for reading OpenStreetMap PBF files using DuckDB" authors = [{ name = "Kamil Raczycki", email = "kraczycki@kraina.ai" }] dependencies = [ @@ -172,7 +172,7 @@ close-quotes-on-newline = true wrap-one-line = true [tool.bumpver] -current_version = "0.9.0" +current_version = "0.9.1" 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 074f1dd..8be4a2f 100644 --- a/quackosm/__init__.py +++ b/quackosm/__init__.py @@ -18,7 +18,7 @@ from quackosm.pbf_file_reader import PbfFileReader __app_name__ = "QuackOSM" -__version__ = "0.9.0" +__version__ = "0.9.1" __all__ = [ "PbfFileReader",