From 932b436e5174085098d14ff1771201b2376f8641 Mon Sep 17 00:00:00 2001 From: Kraina CI/CD <150701114+kraina-cicd@users.noreply.github.com> Date: Sun, 28 Apr 2024 08:56:13 +0200 Subject: [PATCH] chore(CI/CD): bump version 0.7.1 -> 0.7.2 (#91) * chore(CI/CD): bump version 0.7.1 -> 0.7.2 * docs: update CHANGELOG.md --- CHANGELOG.md | 6 +++++- pyproject.toml | 4 ++-- quackosm/__init__.py | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ba5740..680f3e9 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.7.2] - 2024-04-27 + ### Changed - Refactored geometry fixing by utilizing `ST_MakeValid` function added in DuckDB `0.10.0` version @@ -224,7 +226,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.7.1...HEAD +[Unreleased]: https://github.com/kraina-ai/quackosm/compare/0.7.2...HEAD + +[0.7.2]: https://github.com/kraina-ai/quackosm/compare/0.7.1...0.7.2 [0.7.1]: https://github.com/kraina-ai/quackosm/compare/0.7.0...0.7.1 diff --git a/pyproject.toml b/pyproject.toml index fbcfedd..164d39e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "QuackOSM" -version = "0.7.1" +version = "0.7.2" 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.7.1" +current_version = "0.7.2" 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 3310034..be5aa6c 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.7.1" +__version__ = "0.7.2" __all__ = [ "PbfFileReader",