fixed two country IDs in Countryfilemapping

- Brazl and Domenican Republic
This commit is contained in:
Tobias Wellnitz, DH1TW 2022-12-31 02:31:39 +01:00
parent 098307308d
commit c5893dcc7a
3 changed files with 12 additions and 5 deletions

View file

@ -1,6 +1,14 @@
Changelog 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 PyHamtools 0.8.6
================ ================

View file

@ -143,7 +143,7 @@
"Hungary": 239, "Hungary": 239,
"Sable Island": 211, "Sable Island": 211,
"Bosnia-Herzegovina": 501, "Bosnia-Herzegovina": 501,
"Brazil": 18, "Brazil": 108,
"Swains Island": 515, "Swains Island": 515,
"DPR of Korea": 344, "DPR of Korea": 344,
"Lakshadweep Islands": 142, "Lakshadweep Islands": 142,
@ -208,14 +208,13 @@
"Vanuatu": 158, "Vanuatu": 158,
"Malawi": 440, "Malawi": 440,
"Republic of the Congo": 412, "Republic of the Congo": 412,
"Dominican Republic": 95, "Dominican Republic": 72,
"St. Pierre & Miquelon": 277, "St. Pierre & Miquelon": 277,
"St. Helena": 250, "St. Helena": 250,
"St. Peter ": 253, "St. Peter ": 253,
"Baker & Howland Islands": 20, "Baker & Howland Islands": 20,
"Willis Island": 303, "Willis Island": 303,
"Balearic Islands": 21, "Balearic Islands": 21,
"i.name": 150,
"European Turkey": 390, "European Turkey": 390,
"Rodriguez Island": 207, "Rodriguez Island": 207,
"Guinea": 107, "Guinea": 107,

View file

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