diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 1bf7dbc..f16540a 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -8,6 +8,7 @@ PyHamTools 0.5.5 * Refined callsign detection rule for two digit prefix with appendix (e.g. 7N0ERX/1) * Refined callsign detection rule for callsigns with two appendixes (e.g. SV8GXQ/P/QRP) + PyHamTools 0.5.4 diff --git a/pyhamtools/version.py b/pyhamtools/version.py index fe7578e..bcb9eea 100644 --- a/pyhamtools/version.py +++ b/pyhamtools/version.py @@ -1,4 +1,4 @@ #VERSION = (0, 5, 0, 'dev') -VERSION = (0, 5, 4) +VERSION = (0, 5, 5) __release__ = ''.join(['-.'[type(x) == int]+str(x) for x in VERSION])[1:] __version__ = '.'.join((str(VERSION[0]), str(VERSION[1])))