diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 3ab052b..75aadf9 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -1,6 +1,14 @@ Changelog --------- +PyHamtools 0.8.7 +================ + +31. December 2022 + +* Lookuplib/Countryfiles: corrected Brazil to ADIF country id 108 +* Lookuplib/Countryfiles: corrected Domenican Republic to ADIF country if 72 + PyHamtools 0.8.6 ================ diff --git a/pyhamtools/countryfilemapping.json b/pyhamtools/countryfilemapping.json index f62f653..da473a0 100644 --- a/pyhamtools/countryfilemapping.json +++ b/pyhamtools/countryfilemapping.json @@ -143,7 +143,7 @@ "Hungary": 239, "Sable Island": 211, "Bosnia-Herzegovina": 501, - "Brazil": 18, + "Brazil": 108, "Swains Island": 515, "DPR of Korea": 344, "Lakshadweep Islands": 142, @@ -208,14 +208,13 @@ "Vanuatu": 158, "Malawi": 440, "Republic of the Congo": 412, - "Dominican Republic": 95, + "Dominican Republic": 72, "St. Pierre & Miquelon": 277, "St. Helena": 250, "St. Peter ": 253, "Baker & Howland Islands": 20, "Willis Island": 303, "Balearic Islands": 21, - "i.name": 150, "European Turkey": 390, "Rodriguez Island": 207, "Guinea": 107, @@ -362,4 +361,4 @@ "Amsterdam ": 10, "Corsica": 214, "Shetland Islands": 279 -} +} \ No newline at end of file diff --git a/pyhamtools/version.py b/pyhamtools/version.py index b1e93a7..3cbc6a7 100644 --- a/pyhamtools/version.py +++ b/pyhamtools/version.py @@ -1,3 +1,3 @@ -VERSION = (0, 8, 6) +VERSION = (0, 8, 7) __release__ = ''.join(['-.'[type(x) == int]+str(x) for x in VERSION])[1:] __version__ = '.'.join((str(VERSION[0]), str(VERSION[1])))