diff --git a/CHANGELOG.md b/CHANGELOG.md index 9502ff6..7c83dde 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.3] - 2024-09-08 + ### Added - Alternative bounding box related functions for downloading data @@ -32,7 +34,9 @@ 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.2...HEAD +[Unreleased]: https://github.com/kraina-ai/overturemaestro/compare/0.0.3...HEAD + +[0.0.3]: https://github.com/kraina-ai/overturemaestro/compare/0.0.2...0.0.3 [0.0.2]: https://github.com/kraina-ai/overturemaestro/compare/0.0.1...0.0.2 diff --git a/overturemaestro/__init__.py b/overturemaestro/__init__.py index 434a9b2..e82aa45 100644 --- a/overturemaestro/__init__.py +++ b/overturemaestro/__init__.py @@ -18,7 +18,7 @@ from overturemaestro.release_index import get_available_theme_type_pairs __app_name__ = "OvertureMaestro" -__version__ = "0.0.2" +__version__ = "0.0.3" __all__ = [ "convert_bounding_box_to_geodataframe", diff --git a/pyproject.toml b/pyproject.toml index 28edc79..bf1e6aa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "OvertureMaestro" -version = "0.0.2" +version = "0.0.3" 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.2" +current_version = "0.0.3" version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]" commit_message = "chore(CI/CD): bump version {old_version} -> {new_version}" commit = true