From f9955debccd6096fe28613ec81987c30d38c57e9 Mon Sep 17 00:00:00 2001 From: Kraina CI/CD <150701114+kraina-cicd@users.noreply.github.com> Date: Tue, 7 May 2024 14:30:41 +0200 Subject: [PATCH] chore(CI/CD): bump version 0.7.2 -> 0.7.3 (#97) * chore(CI/CD): bump version 0.7.2 -> 0.7.3 * 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 d0524e7..165e359 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.3] - 2024-05-07 + ### Added - Debug mode that keeps all temporary files for further inspection, activated with `debug` flag @@ -234,7 +236,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.2...HEAD +[Unreleased]: https://github.com/kraina-ai/quackosm/compare/0.7.3...HEAD + +[0.7.3]: https://github.com/kraina-ai/quackosm/compare/0.7.2...0.7.3 [0.7.2]: https://github.com/kraina-ai/quackosm/compare/0.7.1...0.7.2 diff --git a/pyproject.toml b/pyproject.toml index 164d39e..89d6e88 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "QuackOSM" -version = "0.7.2" +version = "0.7.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.7.2" +current_version = "0.7.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 be5aa6c..1651994 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.2" +__version__ = "0.7.3" __all__ = [ "PbfFileReader",