added 0.5.5 to version.py

This commit is contained in:
dh1tw 2016-08-18 20:58:11 +08:00
parent b4613f92e9
commit 2ff8741ab8
2 changed files with 2 additions and 1 deletions

View file

@ -10,6 +10,7 @@ PyHamTools 0.5.5
* Refined callsign detection rule for callsigns with two appendixes (e.g. SV8GXQ/P/QRP)
PyHamTools 0.5.4
================

View file

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