From 965ca10be79e014aee353ee0424f79d29e0ea893 Mon Sep 17 00:00:00 2001 From: "Tobias Wellnitz, DH1TW" Date: Sun, 20 May 2018 17:30:02 +0200 Subject: [PATCH] bumped version to 0.7.0 --- 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 dd1672e..6bad659 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -1,6 +1,15 @@ Changelog --------- +PyHamTools 0.7.0 +================ + +20. May 2018 + * Added FT8 to modes + * Updated test fixtures + * Minor fixes wrt Kosovo & AD1C Countryfiles + + PyHamTools 0.6.1 ================ diff --git a/pyhamtools/version.py b/pyhamtools/version.py index 046eeee..a0bcc73 100644 --- a/pyhamtools/version.py +++ b/pyhamtools/version.py @@ -1,3 +1,3 @@ -VERSION = (0, 6, 1) +VERSION = (0, 7, 0) __release__ = ''.join(['-.'[type(x) == int]+str(x) for x in VERSION])[1:] __version__ = '.'.join((str(VERSION[0]), str(VERSION[1])))