From bac6c5bbff454bf3e71dd32ebb6a31cbe7c40e83 Mon Sep 17 00:00:00 2001 From: Kraina CI/CD <150701114+kraina-cicd@users.noreply.github.com> Date: Fri, 6 Sep 2024 13:45:16 +0200 Subject: [PATCH] chore(CI/CD): bump version 0.0.1 -> 0.0.2 (#14) * chore(CI/CD): bump version 0.0.1 -> 0.0.2 * docs: update CHANGELOG.md --- CHANGELOG.md | 6 +++++- overturemaestro/__init__.py | 2 +- pyproject.toml | 4 ++-- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eddb91a..9c9caee 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.0.2] - 2024-09-06 + ### Added - Basic library tests @@ -26,6 +28,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Functions for downloading the data using generated indexes - Function for displaying available theme and type values -[Unreleased]: https://github.com/kraina-ai/overturemaestro/compare/0.0.1...HEAD +[Unreleased]: https://github.com/kraina-ai/overturemaestro/compare/0.0.2...HEAD + +[0.0.2]: https://github.com/kraina-ai/overturemaestro/compare/0.0.1...0.0.2 [0.0.1]: https://github.com/kraina-ai/overturemaestro/releases/tag/0.0.1 diff --git a/overturemaestro/__init__.py b/overturemaestro/__init__.py index b817f44..5e948c7 100644 --- a/overturemaestro/__init__.py +++ b/overturemaestro/__init__.py @@ -14,7 +14,7 @@ from overturemaestro.release_index import get_available_theme_type_pairs __app_name__ = "OvertureMaestro" -__version__ = "0.0.1" +__version__ = "0.0.2" __all__ = [ "convert_geometry_to_geodataframe", diff --git a/pyproject.toml b/pyproject.toml index d0b58f1..28edc79 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "OvertureMaestro" -version = "0.0.1" +version = "0.0.2" description = "An open-source tool for downloading Overture Maps data with quality of life features" authors = [ {name = "Kamil Raczycki", email = "kraczycki@kraina.ai"}, @@ -173,7 +173,7 @@ close-quotes-on-newline = true wrap-one-line = true [tool.bumpver] -current_version = "0.0.1" +current_version = "0.0.2" version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]" commit_message = "chore(CI/CD): bump version {old_version} -> {new_version}" commit = true