Skip to content

Commit

Permalink
bump: version 0.3.3 → 0.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
rsavoye committed Aug 6, 2023
1 parent 66850f0 commit 4d434f9
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 deletions.
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 := osm-fieldwork
VERSION := 0.3.3
VERSION := 0.3.4

# Make a python package for pip
pip:
Expand Down
5 changes: 5 additions & 0 deletions docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ all: $(HTML) $(PDF)
$(PANDOC) $(PFLAGS) --toc --to=pdf $< --metadata title="$${title}" -o $*.pdf
@echo "Wrote $*.pdf"

%.man: %.md
@title="$(shell grep "^#" $< | head -1 | tr -d '#')"; \
$(PANDOC) $(PFLAGS) --toc --to=man $< --metadata title="$${title}" -o $*.1
@echo "Wrote $*.man"

clean: force
@rm -f $(HTML) $(PDF)

Expand Down
2 changes: 1 addition & 1 deletion osm_fieldwork/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.3"
__version__ = "0.3.4"
4 changes: 1 addition & 3 deletions osm_fieldwork/odk_merge.py
Original file line number Diff line number Diff line change
Expand Up @@ -462,16 +462,14 @@ def main():

# if verbose, dump to the terminal.
if args.verbose:
root = logging.getLogger()
log.setLevel(logging.DEBUG)

ch = logging.StreamHandler(sys.stdout)
ch.setLevel(logging.DEBUG)
formatter = logging.Formatter(
"%(threadName)10s - %(name)s - %(levelname)s - %(message)s"
)
ch.setFormatter(formatter)
root.addHandler(ch)
log.addHandler(ch)

if args.outfile:
outfile = args.outfile
Expand Down
1 change: 0 additions & 1 deletion osm_fieldwork/xlsforms/.~lock.test.xls#

This file was deleted.

5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ dependencies = [
"overpy>=0.6",
"thefuzz>=0.19.0",
"haversine>=2.8.0",
"flatdict>=4.0.1"
"flatdict>=4.0.1",
"ogr>=0.44.0",
]
requires-python = ">=3.9"
readme = "README.md"
Expand Down Expand Up @@ -63,7 +64,7 @@ pythonpath = "osm_fieldwork"

[tool.commitizen]
name = "cz_conventional_commits"
version = "0.3.3"
version = "0.3.4"
version_files = [
"pyproject.toml:version",
"osm_fieldwork/__version__.py",
Expand Down

0 comments on commit 4d434f9

Please sign in to comment.