diff --git a/CHANGELOG.md b/CHANGELOG.md index f1f146fd6..8a788380a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## 0.10.0 (2024-05-22) + +### Feat + +- add support for geotrace (#254) + +### Fix + +- tile id extraction for pmtiles correct x/y ordering + ## 0.9.2 (2024-04-29) ### Fix diff --git a/Makefile b/Makefile index 206413193..d35c78bc0 100755 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PACKAGE := org.osm_fieldwork.py NAME := osm-fieldwork -VERSION := 0.9.2 +VERSION := 0.10.0 # All python source files FILES := $(wildcard ./osm_fieldwork/*.py) diff --git a/osm_fieldwork/__version__.py b/osm_fieldwork/__version__.py index a2fecb457..61fb31cae 100644 --- a/osm_fieldwork/__version__.py +++ b/osm_fieldwork/__version__.py @@ -1 +1 @@ -__version__ = "0.9.2" +__version__ = "0.10.0" diff --git a/pyproject.toml b/pyproject.toml index 8272ec069..76c2372d2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -59,7 +59,7 @@ asyncio_mode="auto" [tool.commitizen] name = "cz_conventional_commits" -version = "0.9.2" +version = "0.10.0" version_files = [ "pyproject.toml:version", "osm_fieldwork/__version__.py",