Skip to content

Commit

Permalink
update release version 0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkralidis committed Apr 10, 2023
1 parent 19c8316 commit 74e0c9e
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
15 changes: 15 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
pygeometa (0.14.0) focal; urgency=medium

* add metadata transformation workflow (#186)
* MCF schema updates (#187)
* fix ISO based distribution model (#175)
* add WMO WCMP2 updates
* improve ISO contact parsing (#207)
* add identification.license to MCF (#205)
* update OARec themes/concepts model (#213)
* add support for spatial keywords to MCF (#202)
* streamline OARec contacts (@215)
* update ISO parsing based on OWSLib 0.29

-- Tom Kralidis <[email protected]> Mon, 10 Apr 2023 01:05:25 +0000

pygeometa (0.13.1) bionic; urgency=medium

* fix pygeoapi media type and payload for raw responses
Expand Down
2 changes: 1 addition & 1 deletion pygeometa/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
from pygeometa.core import (generate, import_, info, schemas,
transform, validate)

__version__ = '0.13.1'
__version__ = '0.14.0'


@click.group()
Expand Down
4 changes: 1 addition & 3 deletions pygeometa/schemas/wmo_wcmp2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,7 @@ def write(self, mcf: dict, stringify: str = True) -> Union[dict, str]:
record['links'].append(link)

try:
record['properties']['wmo:dataPolicy'] = {
'name': mcf['identification']['wmo_data_policy']
}
record['properties']['wmo:dataPolicy'] = mcf['identification']['wmo_data_policy'] # noqa
except KeyError:
LOGGER.warning('Missing wmo:dataPolicy')

Expand Down

0 comments on commit 74e0c9e

Please sign in to comment.