From f9ce0ee7fe562fcf94224dd85ce9b065f23d2f06 Mon Sep 17 00:00:00 2001 From: spwoodcock Date: Fri, 1 Sep 2023 14:35:56 +0100 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.3.5=20=E2=86=92=200.3.6rc0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 57 ++++++++++++++++++++++++++++++++++++ Makefile | 2 +- osm_fieldwork/__version__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 60 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ab2edf2..8bb53ea2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,60 @@ +## 0.3.6rc0 (2023-09-01) + +### Feat + +- complete overhaul of docs, mkdocstrings + +### Fix + +- csv parsing for test +- Delete the UML images for clean +- Generate PDFs from the primary markdown files in docs/about +- Drop unused main.py file +- Add support for doxygen API docs +- fix typo in url for data flow diagram +- Add new data flow charts +- Use new imagery.yaml file for sources instead of hardcoding them all +- Add USGS topo map as a source +- Improve parsing to cover more than one format +- Add support for a custom TMS URL +- Add missing test data file +- Improve processing of Rwanda submissions, capture OSM ID and improve the conversion config file +- list forms api +- filespec made optional in the filterdata class +- text 78 was present, it is now removed +- indentation on odk_merge +- typing issues and imports +- Fix listForms(), the parameter name changed +- Add trailing comma to all function parameter blocks +- Add the deep tech docs +- fix typo in parameter name +- Add the more obscure utilities to the API docs +- Add more API wrappers +- Add mkdocs code comments +- Add mkdocs code comments +- Fix broken indent in debugging code, it was only being executed with -v +- Add standalone script for osm2favorites +- Add mkdocs code comments +- Add mkdocs code comments +- Add mkdocs code comments +- Add mkdocs code comments +- Add mkdocs comments +- Add mkdocs code comments +- Add bash wrapper for basemapper.py +- Update a few mkdocs comments so mkdocs serve is happy +- Minor updates to mkdoc comment, fix indentation +- Add mkdocs code comments +- Add more docs, organize top level links +- Replace lines of code that got deleted by accident +- Add mkdoc strings +- creating a project that already exists +- Add pySmartDL + +### Refactor + +- update refs logging --> log +- remove mkgendocs config + ## 0.3.5 (2023-08-11) ### Fix diff --git a/Makefile b/Makefile index ea7bf6a1..a9ed017c 100755 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PACKAGE := org.osm_fieldwork.py NAME := osm-fieldwork -VERSION := 0.3.5 +VERSION := 0.3.6rc0 # All python source files FILES := $(wildcard ./osm_fieldwork/*.py) diff --git a/osm_fieldwork/__version__.py b/osm_fieldwork/__version__.py index a8d4557d..951d58a9 100644 --- a/osm_fieldwork/__version__.py +++ b/osm_fieldwork/__version__.py @@ -1 +1 @@ -__version__ = "0.3.5" +__version__ = "0.3.6rc0" diff --git a/pyproject.toml b/pyproject.toml index d7137432..54c68650 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -59,7 +59,7 @@ pythonpath = "osm_fieldwork" [tool.commitizen] name = "cz_conventional_commits" -version = "0.3.5" +version = "0.3.6rc0" version_files = [ "pyproject.toml:version", "osm_fieldwork/__version__.py",