mirror of
https://github.com/dh1tw/pyhamtools.git
synced 2025-12-06 06:52:00 +01:00
fixed two country IDs in Countryfilemapping
- Brazl and Domenican Republic
This commit is contained in:
parent
098307308d
commit
c5893dcc7a
|
|
@ -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
|
||||||
================
|
================
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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,
|
||||||
|
|
|
||||||
|
|
@ -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])))
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue