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 e3af370 commit 567585c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +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
---------------------

Fixed
~~~~~

* TypeError: cannot unpack non-iterable NoneType object in `_parse_ref_system` 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.3"
__version__ = "0.12.4"
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 @@ -126,7 +126,7 @@ def _parse_ref_system(self):

return code, prefix
else:
return None
return None, None

@property
def code(self):
Expand Down

0 comments on commit 567585c

Please sign in to comment.