diff --git a/CHANGELOG.md b/CHANGELOG.md index 63d9cda..0c3d70d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 0.4.2 (2025-02-03) + +### Fix + +- extra log info on raw-data-api FAILURE response +- replace pysmartdl with requests-based geofabrik download + ## 0.4.1 (2024-12-09) ### Fix diff --git a/Makefile b/Makefile index 06d9ce8..95525ff 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PACKAGE := org.osm_rawdata.py NAME := osm-rawdata -VERSION := 0.4.1 +VERSION := 0.4.2 # All python source files # MDS := $(wildcard ./docs/*.md) diff --git a/osm_rawdata/__version__.py b/osm_rawdata/__version__.py index efa062f..7a9b048 100644 --- a/osm_rawdata/__version__.py +++ b/osm_rawdata/__version__.py @@ -1,2 +1,2 @@ """Project version""" -__version__ = "0.4.1" +__version__ = "0.4.2" diff --git a/pyproject.toml b/pyproject.toml index b0bbca8..0114ca8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,7 +46,7 @@ log_cli_level = "DEBUG" [tool.commitizen] name = "cz_conventional_commits" -version = "0.4.1" +version = "0.4.2" version_files = [ "pyproject.toml:version", "osm_rawdata/__version__.py",