Skip to content

Commit

Permalink
Update CHANGELOG.rst, __init__.py, and iso_metadata.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jokiefer committed Dec 12, 2023
1 parent 567585c commit 7530e71
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

[v0.12.4] - 2023-12-12
[v0.12.5] - 2023-12-12
---------------------

Fixed
~~~~~

* TypeError: cannot unpack non-iterable NoneType object in `_parse_ref_system` method.
* TypeError: 'Polygon' object is not callable `geometries` method.


[v0.12.3] - 2023-12-12
Expand Down
2 changes: 1 addition & 1 deletion ows_lib/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "0.12.4"
__version__ = "0.12.5"
VERSION = __version__ # synonym
2 changes: 1 addition & 1 deletion ows_lib/xml_mapper/iso_metadata/iso_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def geometries(self) -> MultiPolygon:
"""
geometries = []
for geometry in self._geometry_list:
geometries.append(geometry.to_geometry())
geometries.append(geometry.to_geometry)
return MultiPolygon(geometries)

@geometries.setter
Expand Down

0 comments on commit 7530e71

Please sign in to comment.