Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 4d434f9

Browse files
committed
bump: version 0.3.3 → 0.3.4
1 parent 66850f0 commit 4d434f9

File tree

6 files changed

+11
-8
lines changed

6 files changed

+11
-8
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
PACKAGE := org.osm_fieldwork.py
2020
NAME := osm-fieldwork
21-
VERSION := 0.3.3
21+
VERSION := 0.3.4
2222

2323
# Make a python package for pip
2424
pip:

docs/Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,11 @@ all: $(HTML) $(PDF)
4242
$(PANDOC) $(PFLAGS) --toc --to=pdf $< --metadata title="$${title}" -o $*.pdf
4343
@echo "Wrote $*.pdf"
4444

45+
%.man: %.md
46+
@title="$(shell grep "^#" $< | head -1 | tr -d '#')"; \
47+
$(PANDOC) $(PFLAGS) --toc --to=man $< --metadata title="$${title}" -o $*.1
48+
@echo "Wrote $*.man"
49+
4550
clean: force
4651
@rm -f $(HTML) $(PDF)
4752

osm_fieldwork/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.3.3"
1+
__version__ = "0.3.4"

osm_fieldwork/odk_merge.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -462,16 +462,14 @@ def main():
462462

463463
# if verbose, dump to the terminal.
464464
if args.verbose:
465-
root = logging.getLogger()
466465
log.setLevel(logging.DEBUG)
467-
468466
ch = logging.StreamHandler(sys.stdout)
469467
ch.setLevel(logging.DEBUG)
470468
formatter = logging.Formatter(
471469
"%(threadName)10s - %(name)s - %(levelname)s - %(message)s"
472470
)
473471
ch.setFormatter(formatter)
474-
root.addHandler(ch)
472+
log.addHandler(ch)
475473

476474
if args.outfile:
477475
outfile = args.outfile

osm_fieldwork/xlsforms/.~lock.test.xls#

Lines changed: 0 additions & 1 deletion
This file was deleted.

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ dependencies = [
2121
"overpy>=0.6",
2222
"thefuzz>=0.19.0",
2323
"haversine>=2.8.0",
24-
"flatdict>=4.0.1"
24+
"flatdict>=4.0.1",
25+
"ogr>=0.44.0",
2526
]
2627
requires-python = ">=3.9"
2728
readme = "README.md"
@@ -63,7 +64,7 @@ pythonpath = "osm_fieldwork"
6364

6465
[tool.commitizen]
6566
name = "cz_conventional_commits"
66-
version = "0.3.3"
67+
version = "0.3.4"
6768
version_files = [
6869
"pyproject.toml:version",
6970
"osm_fieldwork/__version__.py",

0 commit comments

Comments
 (0)