diff --git a/CHANGELOG.md b/CHANGELOG.md index 565a271..63d9cda 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.4.1 (2024-12-09) + +### Fix + +- remove convex hull to avoid getting features outside aoi (#41) + ## 0.4.0 (2024-10-24) ## 0.3.3 (2024-10-14) diff --git a/Makefile b/Makefile index 8930baf..06d9ce8 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PACKAGE := org.osm_rawdata.py NAME := osm-rawdata -VERSION := 0.4.0 +VERSION := 0.4.1 # All python source files # MDS := $(wildcard ./docs/*.md) diff --git a/osm_rawdata/__version__.py b/osm_rawdata/__version__.py index 52700e7..efa062f 100644 --- a/osm_rawdata/__version__.py +++ b/osm_rawdata/__version__.py @@ -1,2 +1,2 @@ """Project version""" -__version__ = "0.4.0" +__version__ = "0.4.1" diff --git a/pyproject.toml b/pyproject.toml index 41c6af8..b0bbca8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,7 +46,7 @@ log_cli_level = "DEBUG" [tool.commitizen] name = "cz_conventional_commits" -version = "0.4.0" +version = "0.4.1" version_files = [ "pyproject.toml:version", "osm_rawdata/__version__.py",