Skip to content

Commit bc6001a

Browse files
kraina-cicdRaczeQ
andauthored
chore(CI/CD): bump version 0.11.2 -> 0.11.3 (#175)
* 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 <raczyckikamil@gmail.com>
1 parent 38613aa commit bc6001a

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.11.3] - 2024-10-25
11+
1012
### Changed
1113

1214
- Moved location of the OSM extracts providers to the global cache [#173](https://github.com/kraina-ai/quackosm/issues/173)
@@ -403,7 +405,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
403405
- Created QuackOSM repository
404406
- Implemented PbfFileReader
405407

406-
[Unreleased]: https://github.com/kraina-ai/quackosm/compare/0.11.2...HEAD
408+
[Unreleased]: https://github.com/kraina-ai/quackosm/compare/0.11.3...HEAD
409+
410+
[0.11.3]: https://github.com/kraina-ai/quackosm/compare/0.11.2...0.11.3
407411

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

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "QuackOSM"
3-
version = "0.11.2"
3+
version = "0.11.3"
44
description = "An open-source tool for reading OpenStreetMap PBF files using DuckDB"
55
authors = [{ name = "Kamil Raczycki", email = "kraczycki@kraina.ai" }]
66
dependencies = [
@@ -173,7 +173,7 @@ close-quotes-on-newline = true
173173
wrap-one-line = true
174174

175175
[tool.bumpver]
176-
current_version = "0.11.2"
176+
current_version = "0.11.3"
177177
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
178178
commit_message = "chore(CI/CD): bump version {old_version} -> {new_version}"
179179
commit = true

quackosm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
from quackosm.pbf_file_reader import PbfFileReader
2222

2323
__app_name__ = "QuackOSM"
24-
__version__ = "0.11.2"
24+
__version__ = "0.11.3"
2525

2626
__all__ = [
2727
"PbfFileReader",

quackosm/osm_extracts/extract.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ def load_index_decorator(
5959
def inner(function: Callable[[], "GeoDataFrame"]) -> Callable[[], "GeoDataFrame"]:
6060
def wrapper() -> "GeoDataFrame":
6161
global_cache_file_path = _get_global_cache_file_path(extract_source)
62+
global_cache_file_path.parent.mkdir(exist_ok=True, parents=True)
6263
expected_columns = ["id", "name", "file_name", "parent", "geometry", "area", "url"]
6364

6465
# Check if index exists in cache

0 commit comments

Comments
 (0)