bumped release to 0.7.6

This commit is contained in:
Tobias Wellnitz, DH1TW 2020-09-29 00:44:54 +02:00
parent 87d35c7d02
commit b2a76a8695
2 changed files with 12 additions and 1 deletions

View file

@ -1,6 +1,17 @@
Changelog
---------
PyHamTools 0.7.6
================
29. September 2020
* Renamed "Kingdom of eSwatini" into "Kingdom of Eswatini" (#19 tnx @therrio)
* fixed the latitude in the VK9XX unit test fixture
* fixed docs - redis related example in docstring (#20 tnx @kholia)
* fixed docs - calculate distance example (#18 tnx @devnulling)
PyHamTools 0.7.5
================

View file

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