version 0.6.1

This commit is contained in:
Tobias Wellnitz, DH1TW 2018-01-28 13:42:48 +01:00
parent 39196b96e7
commit 3b2cef4857
3 changed files with 10 additions and 1 deletions

View file

@ -1,6 +1,13 @@
Changelog
---------
PyHamTools 0.6.0
================
28. January 2018
* Minor bugfix for lookuplib which used with country-files.com
PyHamTools 0.6.0
================

View file

@ -1000,6 +1000,8 @@ class LookupLib(object):
# from cwd
if os.path.exists(cwdFile):
# country mapping files contains the ADIF identifiers of a particular
# country since the country-files do not provide this information (only DXCC id)
country_mapping_filename = cwdFile
# from package
elif os.path.exists(pkgFile):

View file

@ -1,3 +1,3 @@
VERSION = (0, 6, 0)
VERSION = (0, 6, 1)
__release__ = ''.join(['-.'[type(x) == int]+str(x) for x in VERSION])[1:]
__version__ = '.'.join((str(VERSION[0]), str(VERSION[1])))