Skip to content

Commit

Permalink
chore(CI/CD): bump version 0.11.2 -> 0.11.3 (#175)
Browse files Browse the repository at this point in the history
* chore(CI/CD): bump version 0.11.2 -> 0.11.3

* docs: update CHANGELOG.md

* fix: add automatic cache directory creation

---------

Co-authored-by: Kamil Raczycki <[email protected]>
  • Loading branch information
kraina-cicd and RaczeQ authored Oct 25, 2024
1 parent 38613aa commit bc6001a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.11.3] - 2024-10-25

### Changed

- Moved location of the OSM extracts providers to the global cache [#173](https://github.com/kraina-ai/quackosm/issues/173)
Expand Down Expand Up @@ -403,7 +405,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.2...HEAD
[Unreleased]: https://github.com/kraina-ai/quackosm/compare/0.11.3...HEAD

[0.11.3]: https://github.com/kraina-ai/quackosm/compare/0.11.2...0.11.3

[0.11.2]: https://github.com/kraina-ai/quackosm/compare/0.11.1...0.11.2

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "QuackOSM"
version = "0.11.2"
version = "0.11.3"
description = "An open-source tool for reading OpenStreetMap PBF files using DuckDB"
authors = [{ name = "Kamil Raczycki", email = "[email protected]" }]
dependencies = [
Expand Down Expand Up @@ -173,7 +173,7 @@ close-quotes-on-newline = true
wrap-one-line = true

[tool.bumpver]
current_version = "0.11.2"
current_version = "0.11.3"
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
commit_message = "chore(CI/CD): bump version {old_version} -> {new_version}"
commit = true
Expand Down
2 changes: 1 addition & 1 deletion quackosm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from quackosm.pbf_file_reader import PbfFileReader

__app_name__ = "QuackOSM"
__version__ = "0.11.2"
__version__ = "0.11.3"

__all__ = [
"PbfFileReader",
Expand Down
1 change: 1 addition & 0 deletions quackosm/osm_extracts/extract.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ def load_index_decorator(
def inner(function: Callable[[], "GeoDataFrame"]) -> Callable[[], "GeoDataFrame"]:
def wrapper() -> "GeoDataFrame":
global_cache_file_path = _get_global_cache_file_path(extract_source)
global_cache_file_path.parent.mkdir(exist_ok=True, parents=True)
expected_columns = ["id", "name", "file_name", "parent", "geometry", "area", "url"]

# Check if index exists in cache
Expand Down

0 comments on commit bc6001a

Please sign in to comment.