diff --git a/CHANGELOG.md b/CHANGELOG.md index a30e5e4..864e982 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.3] - 2024-09-10 + ### Removed - `geoarrow-rust-core` from dependencies @@ -354,7 +356,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.2...HEAD +[Unreleased]: https://github.com/kraina-ai/quackosm/compare/0.9.3...HEAD + +[0.9.3]: https://github.com/kraina-ai/quackosm/compare/0.9.2...0.9.3 [0.9.2]: https://github.com/kraina-ai/quackosm/compare/0.9.1...0.9.2 diff --git a/pyproject.toml b/pyproject.toml index 0b7e3e3..9e02dd0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "QuackOSM" -version = "0.9.2" +version = "0.9.3" description = "An open-source tool for reading OpenStreetMap PBF files using DuckDB" authors = [{ name = "Kamil Raczycki", email = "kraczycki@kraina.ai" }] dependencies = [ @@ -170,7 +170,7 @@ close-quotes-on-newline = true wrap-one-line = true [tool.bumpver] -current_version = "0.9.2" +current_version = "0.9.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 e2bc77e..80af3e3 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.2" +__version__ = "0.9.3" __all__ = [ "PbfFileReader",