diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index f587d59..6eb15fc 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -1,6 +1,13 @@ Changelog --------- +PyHamTools 0.7.8 +================ + +04. December 2021 + +* Updated Clublog's (CDN based) URL for downloading the Prefixes and Exceptions XML + PyHamTools 0.7.7 ================ diff --git a/pyhamtools/version.py b/pyhamtools/version.py index 45ebe53..e9c73fb 100644 --- a/pyhamtools/version.py +++ b/pyhamtools/version.py @@ -1,3 +1,3 @@ -VERSION = (0, 7, 7) +VERSION = (0, 7, 8) __release__ = ''.join(['-.'[type(x) == int]+str(x) for x in VERSION])[1:] __version__ = '.'.join((str(VERSION[0]), str(VERSION[1])))