Skip to content

Commit 74e0c9e

Browse files
committed
update release version 0.14.0
1 parent 19c8316 commit 74e0c9e

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed

debian/changelog

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
pygeometa (0.14.0) focal; urgency=medium
2+
3+
* add metadata transformation workflow (#186)
4+
* MCF schema updates (#187)
5+
* fix ISO based distribution model (#175)
6+
* add WMO WCMP2 updates
7+
* improve ISO contact parsing (#207)
8+
* add identification.license to MCF (#205)
9+
* update OARec themes/concepts model (#213)
10+
* add support for spatial keywords to MCF (#202)
11+
* streamline OARec contacts (@215)
12+
* update ISO parsing based on OWSLib 0.29
13+
14+
-- Tom Kralidis <tomkralidis@gmail.com> Mon, 10 Apr 2023 01:05:25 +0000
15+
116
pygeometa (0.13.1) bionic; urgency=medium
217

318
* fix pygeoapi media type and payload for raw responses

pygeometa/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
from pygeometa.core import (generate, import_, info, schemas,
5050
transform, validate)
5151

52-
__version__ = '0.13.1'
52+
__version__ = '0.14.0'
5353

5454

5555
@click.group()

pygeometa/schemas/wmo_wcmp2/__init__.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,7 @@ def write(self, mcf: dict, stringify: str = True) -> Union[dict, str]:
103103
record['links'].append(link)
104104

105105
try:
106-
record['properties']['wmo:dataPolicy'] = {
107-
'name': mcf['identification']['wmo_data_policy']
108-
}
106+
record['properties']['wmo:dataPolicy'] = mcf['identification']['wmo_data_policy'] # noqa
109107
except KeyError:
110108
LOGGER.warning('Missing wmo:dataPolicy')
111109

0 commit comments

Comments
 (0)