Skip to content

Commit

Permalink
bump: version 0.1.0 → 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
spwoodcock committed Dec 4, 2023
1 parent 341bc7b commit 44ad95d
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 3 deletions.
56 changes: 56 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1 +1,57 @@
# CHANGELOG

## 0.2.0 (2023-12-04)

### Feat

- split by sql use osm_extracts and init db tables
- add helper functions for each split type
- add outputGeojson method

### Fix

- fix passing osm_extract via cmd line + api
- handle case where tags key is nested
- drop timestamp field is parsed in geojson
- sql splitting, commit transactions
- fix parsing of osm tags for db insert
- use gpd.read_file over GeoDataFrame.from_file
- add osm_id to ways_lines + ways_poly
- correctly pass args.dburl on cmd line
- correct extract highways into ways_lines
- drop of geojson type field if not exists
- use same session for all db queries
- refactor FMTMSplitter init to set aoi
- add db models to repo for generating tables
- update project_aoi geometry field --> geom

### Refactor

- command line to use helper functions
- split by feature
- split by square

## 0.1.0 (2023-10-25)

### Fix

- Add Doxygen and pvreverse support
- Add mkdocs config file
- Add mkdocs commentss to all classes and methods
- Add mkdocstrings-python to dependencies
- Ad dminimal doc support for mkdocs
- Add initial doc for the fmtm-splitter client
- Add workflow to update the wiki, probably won't work yet
- Supply the number of buildings per task at runtime
- Make the number of buildings parameter configurable at runtime
- Add something to the README.md doc
- Add screenshot of task splitting by feature
- standalone class & script to genersate tasks within an AOI
- Add support to be installed by pip
- Add basic documentation files

### Refactor

- rename LICENSE.md --> LICENSE
- rename build-ci workflow build_ci
- remove refs to wiki
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_fieldwork.py
NAME := fmtm-splitter
VERSION := 0.1.0
VERSION := 0.2.0

# All python source files
# MDS := $(wildcard ./docs/*.md)
Expand Down
2 changes: 1 addition & 1 deletion fmtm_splitter/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.0"
__version__ = "0.2.0"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ pythonpath = "fmtm_splitter"

[tool.commitizen]
name = "cz_conventional_commits"
version = "0.1.0"
version = "0.2.0"
version_files = [
"pyproject.toml:version",
"fmtm_splitter/__version__.py",
Expand Down

0 comments on commit 44ad95d

Please sign in to comment.