From 528c3e0246ba2a287723c118e9884af90b261f1f Mon Sep 17 00:00:00 2001 From: Kraina CI/CD <150701114+kraina-cicd@users.noreply.github.com> Date: Sun, 3 Nov 2024 23:21:40 +0100 Subject: [PATCH] chore(CI/CD): bump version 0.11.4 -> 0.12.0 (#181) * chore(CI/CD): bump version 0.11.4 -> 0.12.0 * 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 1ca1380..565bf00 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.12.0] - 2024-11-03 + ### Added - Option to pass custom SQL filters with `custom_sql_filter` (and `--custom-sql-filter`) parameter [#67](https://github.com/kraina-ai/quackosm/issues/67) @@ -419,7 +421,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.11.4...HEAD +[Unreleased]: https://github.com/kraina-ai/quackosm/compare/0.12.0...HEAD + +[0.12.0]: https://github.com/kraina-ai/quackosm/compare/0.11.4...0.12.0 [0.11.4]: https://github.com/kraina-ai/quackosm/compare/0.11.3...0.11.4 diff --git a/pyproject.toml b/pyproject.toml index 05c67f9..aea8a6e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "QuackOSM" -version = "0.11.4" +version = "0.12.0" 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.11.4" +current_version = "0.12.0" 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 444cd11..929ca2e 100644 --- a/quackosm/__init__.py +++ b/quackosm/__init__.py @@ -21,7 +21,7 @@ from quackosm.pbf_file_reader import PbfFileReader __app_name__ = "QuackOSM" -__version__ = "0.11.4" +__version__ = "0.12.0" __all__ = [ "PbfFileReader",