diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index a774c74..ade2100 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -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 ================ diff --git a/pyhamtools/version.py b/pyhamtools/version.py index 075ec37..0a57b1a 100644 --- a/pyhamtools/version.py +++ b/pyhamtools/version.py @@ -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])))