From bf785f45f57fe63b176b0d45cc29287e40ba4d41 Mon Sep 17 00:00:00 2001 From: "Tobias Wellnitz, DH1TW" Date: Mon, 5 Dec 2022 01:53:20 +0100 Subject: [PATCH] updated to v.0.8.1 --- docs/source/changelog.rst | 9 +++++++++ pyhamtools/version.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index def2182..b533ff1 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -1,6 +1,15 @@ Changelog --------- +PyHamtools 0.8.1 +================ + +05. December 2022 + +* removed debug print statement from QRZ.com queries + + + PyHamtools 0.8.0 ================ diff --git a/pyhamtools/version.py b/pyhamtools/version.py index 9ac805f..3060626 100644 --- a/pyhamtools/version.py +++ b/pyhamtools/version.py @@ -1,3 +1,3 @@ -VERSION = (0, 8, 0) +VERSION = (0, 8, 1) __release__ = ''.join(['-.'[type(x) == int]+str(x) for x in VERSION])[1:] __version__ = '.'.join((str(VERSION[0]), str(VERSION[1])))