From 3b2cef48579fc28f1c2264ae7d99553726746587 Mon Sep 17 00:00:00 2001 From: "Tobias Wellnitz, DH1TW" Date: Sun, 28 Jan 2018 13:42:48 +0100 Subject: [PATCH] version 0.6.1 --- docs/source/changelog.rst | 7 +++++++ pyhamtools/lookuplib.py | 2 ++ pyhamtools/version.py | 2 +- 3 files changed, 10 insertions(+), 1 deletion(-) 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])))