updated to v.0.8.1

This commit is contained in:
Tobias Wellnitz, DH1TW 2022-12-05 01:53:20 +01:00
parent adbd605fbd
commit bf785f45f5
2 changed files with 10 additions and 1 deletions

View file

@ -1,6 +1,15 @@
Changelog Changelog
--------- ---------
PyHamtools 0.8.1
================
05. December 2022
* removed debug print statement from QRZ.com queries
PyHamtools 0.8.0 PyHamtools 0.8.0
================ ================

View file

@ -1,3 +1,3 @@
VERSION = (0, 8, 0) VERSION = (0, 8, 1)
__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])))