diff --git a/CHANGELOG.md b/CHANGELOG.md index a9b002b..4e154f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +## 0.1.5 (2023-11-10) + +### Fix + +- Add .scalar_subquery to get rid of the warning message +- Add the two new utilities +- Add more details on the data files +- Add support for importing multipolygons +- Depending on the version of dependant libraries, we need to set the SRID as it's not always set +- Don't try to process data if the list is empty +- Wrap reading parquet file with try/except since sometimes pyarrow core dumps +- Remove commented out code blocks, don't add OSM or MS buildings when importing Overture data as it's already out of date +- Oope, reenable mutli-threading +- Use new Overture class, which handles all the schema variations for Overture V2 data formatted files +- Add more content on Overture data files +- Support parsing all the different Overture data files + ## 0.1.4 (2023-10-23) ### Fix diff --git a/Makefile b/Makefile index 02b884d..d51c9af 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PACKAGE := org.osm_rawdata.py NAME := osm-rawdata -VERSION := 0.1.4 +VERSION := 0.1.5 # All python source files # MDS := $(wildcard ./docs/*.md) diff --git a/osm_rawdata/__version__.py b/osm_rawdata/__version__.py index 5579cc0..619fa31 100644 --- a/osm_rawdata/__version__.py +++ b/osm_rawdata/__version__.py @@ -1,2 +1,2 @@ """Project version""" -__version__ = "0.1.4" +__version__ = "0.1.5" diff --git a/pyproject.toml b/pyproject.toml index 8fceb13..3851141 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,7 +48,7 @@ pythonpath = "osm_rawdata" [tool.commitizen] name = "cz_conventional_commits" -version = "0.1.4" +version = "0.1.5" version_files = [ "pyproject.toml:version", "osm_rawdata/__version__.py",