Skip to content

Commit

Permalink
bump: version 0.20.0 → 0.20.1
Browse files Browse the repository at this point in the history
  • Loading branch information
spwoodcock committed Feb 14, 2025
1 parent d54e1a2 commit 8995a72
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.20.1 (2025-02-14)

### Fix

- rename additional_geometry to be dynamic to allow multiple extra datasets

## 0.20.0 (2025-02-12)

### Feat
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_fieldwork.py
NAME := osm-fieldwork
VERSION := 0.20.0
VERSION := 0.20.1

# All python source files
FILES := $(wildcard ./osm_fieldwork/*.py)
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.20.0"
__version__ = "0.20.1"
32 changes: 29 additions & 3 deletions osm_fieldwork/form_components/mandatory_fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,19 +97,45 @@ def get_mandatory_fields(new_geom_type: DbGeomType):
"type": "select_one_from_file features.csv",
"name": "feature",
"label::english(en)": "Geometry",
"label::nepali(ne)": "ज्यामिति",
"label::portuguese(pt-br)": "geometria",
"appearance": "map",
},
# New feature group start
{
"type": geom_field,
"name": "new_feature",
"type": "begin group",
"name": "new_feature_group",
"label::english(en)": "Please draw a new geometry",
"label::nepali(ne)": "कृपया नयाँ ज्यामिति कोर्नुहोस्।",
"label::portuguese(pt-br)": "Por favor, desenhe uma nova geometria",
"appearance": "field-list",
"relevant": "${feature} = ''",
},
{
"type": "text",
"name": "new_feature_lat",
"label::english(en)": "Latitude",
"label::nepali(ne)": "अक्षांश",
"label::portuguese(pt-br)": "Latitude",
},
{
"type": "text",
"name": "new_feature_lat",
"label::english(en)": "Latitude",
"label::nepali(ne)": "अक्षांश",
"label::portuguese(pt-br)": "Latitude",
},
{
"type": geom_field,
"name": "new_feature",
"label::english(en)": "Geometry",
"label::portuguese(pt-br)": "geometria",
"label::nepali(ne)": "ज्यामिति",
"appearance": "placement-map",
"relevant": "${feature}= ''",
"required": "yes",
},
{"type": "end group"},
# New feature group end
{
"type": "calculate",
"name": "form_category",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ asyncio_mode="auto"

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

0 comments on commit 8995a72

Please sign in to comment.