From 2ff8741ab80b90ebc941bac32a9846556464b25c Mon Sep 17 00:00:00 2001 From: dh1tw Date: Thu, 18 Aug 2016 20:58:11 +0800 Subject: [PATCH] added 0.5.5 to version.py --- docs/source/changelog.rst | 1 + pyhamtools/version.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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])))