updated country mapping for entity 16 (ZL9) from Auckland & Campbell to "N.Z. Subantarctic Is."

This commit is contained in:
dh1tw 2015-12-30 19:54:16 +01:00
parent 84d5c2fdf9
commit bd22b50e33
4 changed files with 391 additions and 10 deletions

View file

@ -1,10 +1,27 @@
Changelog
---------
PyHamTools 0.5.3
================
30. December 2015
* Updated DXCC entity name of ZL9 (arrl id 16) from Auckland & Campbell to "N.Z. Subantarctic Is." in countrymapping.json (tnx G0UKB)
* Deleted "Auckland" (016) from countrymapping.json
* corrected code example of latlong_to_locator() (tnx VE5ZX)
PyHamTools 0.5.2
================
14. April 2015
* catching another bug related to QRZ.com sessions
PyHamTools 0.5.1
================
14. April 2015
13. April 2015
* improved handling of expired QRZ.com sessions
@ -17,17 +34,17 @@ PyHamTools 0.5.0
* implemented QRZ.com interface into LookupLib [LookupLib]
* changed and unified all output to Unicode
* corrected Longitude to General Standard (-180...0° West, 0...180° East) [LookupLib]
* improved callsign decoding alogrithm [CallInfo]
* added special case to decode location of VK9 callsigns [CallInfo]
* added handling of special callsigns which can't be decoded properly inside a separate callsign exception file (e.g. 7QAA) [CallInfo]
* added ValueError when LOTW data from file contains too many errors [qsl]
PyHamTools 0.4.2
================
@ -35,7 +52,7 @@ PyHamTools 0.4.2
11. October 2014
* added pyhamtools.qsl (get EQSL.cc and LOTW user lists)
PyHamTools 0.4.1
================

View file

@ -2,7 +2,7 @@ license
=======
The MIT License (MIT)
Copyright (c) 2014 Tobias Wellnitz
Copyright (c) Tobias Wellnitz
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

File diff suppressed because one or more lines are too long

View file

@ -1,4 +1,4 @@
#VERSION = (0, 5, 0, 'dev')
VERSION = (0, 5, 1)
VERSION = (0, 5, 3)
__release__ = ''.join(['-.'[type(x) == int]+str(x) for x in VERSION])[1:]
__version__ = '.'.join((str(VERSION[0]), str(VERSION[1])))