diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 6579179..48d0614 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -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 ================ diff --git a/pyhamtools/lookuplib.py b/pyhamtools/lookuplib.py index d055445..a987ee6 100644 --- a/pyhamtools/lookuplib.py +++ b/pyhamtools/lookuplib.py @@ -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): diff --git a/pyhamtools/version.py b/pyhamtools/version.py index d9f139c..046eeee 100644 --- a/pyhamtools/version.py +++ b/pyhamtools/version.py @@ -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])))