diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index fc86733..868f811 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -1,6 +1,14 @@ Changelog --------- +PyHamtools 0.8.4 +================ + +18. December 2022 + +* raise KeyError when callsigns contain non-latin characters (e.g. cyrillic letters) + + PyHamtools 0.8.3 ================ diff --git a/pyhamtools/version.py b/pyhamtools/version.py index ee7c949..b0ba366 100644 --- a/pyhamtools/version.py +++ b/pyhamtools/version.py @@ -1,3 +1,3 @@ -VERSION = (0, 8, 3) +VERSION = (0, 8, 4) __release__ = ''.join(['-.'[type(x) == int]+str(x) for x in VERSION])[1:] __version__ = '.'.join((str(VERSION[0]), str(VERSION[1])))