Skip to content

Commit

Permalink
bump: version 0.1.4 → 0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
spwoodcock committed Nov 10, 2023
1 parent d886aed commit fb97dfd
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 3 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion osm_rawdata/__version__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Project version"""
__version__ = "0.1.4"
__version__ = "0.1.5"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit fb97dfd

Please sign in to comment.