bumped version to 0.8.4

This commit is contained in:
Tobias Wellnitz, DH1TW 2022-12-18 14:47:07 +01:00
parent 8d1bb624de
commit 19f00eac5b
2 changed files with 9 additions and 1 deletions

View file

@ -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
================

View file

@ -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])))