bumped version to 0.7.0

This commit is contained in:
Tobias Wellnitz, DH1TW 2018-05-20 17:30:02 +02:00
parent c52bd544bf
commit 965ca10be7
2 changed files with 10 additions and 1 deletions

View file

@ -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
================

View file

@ -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])))