diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c0957da..10a2358d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## 0.3.7 (2023-10-23) + +### Fix + +- Add simple test case for creating imagery basemaps +- Accumulate all tiles for all zoom levels +- Use boundary file that is a single Feature in addition to a FeatureCollection +- Pass the config file to the YAML parser +- Add USGS reference numbers for highways +- custom tms download logic (tile ordering) +- bug pmtile generation if file exists in first dir +- create basemap directory automatically + ## 0.3.6 (2023-10-09) ### Fix diff --git a/Makefile b/Makefile index d834c1b1..50c95d11 100755 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PACKAGE := org.osm_fieldwork.py NAME := osm-fieldwork -VERSION := 0.3.6 +VERSION := 0.3.7 # All python source files FILES := $(wildcard ./osm_fieldwork/*.py) diff --git a/osm_fieldwork/__version__.py b/osm_fieldwork/__version__.py index d7b30e12..8879c6c7 100644 --- a/osm_fieldwork/__version__.py +++ b/osm_fieldwork/__version__.py @@ -1 +1 @@ -__version__ = "0.3.6" +__version__ = "0.3.7" diff --git a/pyproject.toml b/pyproject.toml index f1c88aee..5f45363f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -61,7 +61,7 @@ pythonpath = "osm_fieldwork" [tool.commitizen] name = "cz_conventional_commits" -version = "0.3.6" +version = "0.3.7" version_files = [ "pyproject.toml:version", "osm_fieldwork/__version__.py",