bumped version to 0.7.5 and added changelog

This commit is contained in:
Tobias Wellnitz, DH1TW 2020-03-03 22:25:10 +01:00
parent f940473245
commit 0fa24e9741
2 changed files with 10 additions and 1 deletions

View file

@ -1,6 +1,15 @@
Changelog
---------
PyHamTools 0.7.5
================
3. March 2020
* fixed a bug related to badly escaped JSON data when using redis
* lookup data is now copied approx. 5x faster into redis
* download artifacts are now cleaned up from the temporary download directory
PyHamTools 0.7.4
================

View file

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