diff --git a/CHANGELOG.md b/CHANGELOG.md index eb262a03..1e891a96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## 0.14.0 (2024-07-29) + +### Feat + +- endpoint to create dataset and bulk upload entities (#276) +- add support for moving tiles (#272) + +### Fix + +- Add support for ways when importing an OSM XML file (#275) +- Fix typo, usfs not usgs, add quering the relations table (#274) + ## 0.13.0 (2024-07-12) ### Fix diff --git a/Makefile b/Makefile index 7eedeb90..7d07a078 100755 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PACKAGE := org.osm_fieldwork.py NAME := osm-fieldwork -VERSION := 0.13.0 +VERSION := 0.14.0 # All python source files FILES := $(wildcard ./osm_fieldwork/*.py) diff --git a/osm_fieldwork/__version__.py b/osm_fieldwork/__version__.py index f23a6b39..9e78220f 100644 --- a/osm_fieldwork/__version__.py +++ b/osm_fieldwork/__version__.py @@ -1 +1 @@ -__version__ = "0.13.0" +__version__ = "0.14.0" diff --git a/pyproject.toml b/pyproject.toml index 06d534dc..1e514860 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -58,7 +58,7 @@ asyncio_mode="auto" [tool.commitizen] name = "cz_conventional_commits" -version = "0.13.0" +version = "0.14.0" version_files = [ "pyproject.toml:version", "osm_fieldwork/__version__.py",